Skip to content

Instantly share code, notes, and snippets.

@kubek2k
Created December 26, 2011 18:08
Show Gist options
  • Save kubek2k/1521784 to your computer and use it in GitHub Desktop.
Save kubek2k/1521784 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char ** argv){
int a,b;
printf("Program policzy roznice dwoch liczb,podaj pierwsza z nich \n");
scanf("%d \n",&a);
printf("Podaj druga liczbe \n");
scanf("%d \n",&b);
printf("roznica wynosi %d ", a-b);
getchar();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment