Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int i,num,maiornum=0;
- for (i=1;i<=5;i++)
- {
- printf ("Digite o %d valor: ",i);
- scanf("%d",&num);
- if (num>maiornum)
- {
- maiornum=num;
- }
- }
- printf("O maior numero e %d",maiornum);
- return(0);
- }
Advertisement
Add Comment
Please, Sign In to add comment