Advertisement
joker546645

4_1 c

Nov 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. #include <stdio.h>
  2. int szukaj4_max(int, int, int, int);
  3.  
  4. int main(){
  5.     int x, y, z, k, wynik;
  6.     printf("\nProsze podac trzy liczby całkowite ze znakiem : ");
  7.         scanf_s("%d  %d  %d  %d", &x, &y, &z, &k, 32);
  8.     wynik = szukaj4_max(x, y, z, k);
  9.     printf("\nSposrod podanych liczb %d, %d, %d, %d \
  10.         liczba %d jest najwieksza\n", x,y,z,k, wynik);
  11.         return 0;
  12.  
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement