Advertisement
Guest User

4.4

a guest
Nov 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. int a[100][100];
  5. int x,y;
  6. for (x=0;x<=13;x++){
  7. for (y=0;y<=36;y++){
  8. if((x<=6)&(y<=8)){
  9. cout << "*";
  10. }
  11. else {
  12. cout<<"=";
  13. }
  14. }
  15. if (y=36) cout <<endl;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement