Advertisement
zfhridoy47

loop_problem_4

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