Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. include <stdio.h>
  2. #include <string.h>
  3.  
  4. void main()
  5. {
  6. clrscr();
  7. // declaracion variables
  8. int x=1;
  9. // instruccion while
  10. while(x<=10)
  11. {
  12. print("%d\n", x);
  13. x=x++;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement