Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. for( int i=0; i<+7; i++) {
  8. cout<<"X"<<endl;
  9. }
  10. int i=0;
  11. do {
  12. cout<<"X";
  13. i++;
  14. } while (i<7);
  15.  
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement