Advertisement
fachiul

When n>=10

May 19th, 2015
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int n = 1;
  5. while(n >= 10) {
  6. printf("%d\n",n);
  7. n++;
  8. }
  9. return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement