Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int number,i,bignum = 0;
- for (i = 0; i < 100; i++)
- {
- printf("Entre com o numero :\n");
- scanf("%d",&number);
- if (number>bignum)
- {
- bignum = number;
- }
- }
- printf("O maior numeor eh %d\n",bignum);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment