Advertisement
rony-Rony_05

problem 1 loop

Jun 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int sum=0,i=2,num;
  5. scanf("%d",&num);
  6. while(i<=num)
  7. {
  8. sum=sum+i;
  9. i=i+2;
  10. }
  11. printf("even sum=%d",sum);
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement