Guest User

Untitled

a guest
Nov 8th, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int iloczyn_liczb(int a,int b){
  4. return a*b;
  5. }
  6. int main()
  7. {
  8. puts("Podaj dwie liczby");
  9. int a,b;
  10. scanf("%d %d", &a, &b);
  11. printf("Iloczyn liczb wynosi %d",iloczyn_liczb(a,b));
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment