Guest User

Untitled

a guest
Dec 10th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // EN BÜYÜK SAYIYI BULMA (5.12.2018)
  2.  
  3. int main(){
  4.  
  5. int i,s1,enbuyuk=-9999999;
  6.  
  7.  
  8. while(i<10) {
  9.  
  10. scanf("%d",&s1);
  11.  
  12. if(s1>enbuyuk) {
  13. enbuyuk=s1;
  14. }
  15. i++;
  16. }
  17.  
  18. printf("en buyuk sayi: %d",enbuyuk);
  19. return 0;
  20. }
  21.  
  22.  
  23. //
Add Comment
Please, Sign In to add comment