Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main(int argc, char *argv[])
- {
- int c ,s ,n ;
- c=0;
- s=0;
- for ( n= 90 ; n>= 47 ; n--)
- {
- s=s+n;
- c=c+1;
- }
- printf("\n %d %d",s,c);
- system("PAUSE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment