Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <locale.h>
  5. #include <math.h>
  6.  
  7. using namespace std;
  8. main()
  9. {
  10. setlocale(LC_ALL, "Portuguese");
  11. int controle=100;
  12. do
  13. {
  14. controle++;
  15. if (controle%2!=0)
  16.  
  17. {
  18. cout<<controle<<endl;
  19. }
  20.  
  21. } while (controle<=200);
  22.  
  23. system ("pause > null");
  24. return 0;
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement