kilolilo

Untitled

Oct 2nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.  int sh=34,v=11;
  6.      for(int b=0;b<v;b++){
  7.          for(int a=0;a<sh;a++){
  8.            if(a==0 || a==sh-1 || b==0 || b==v-1  ){
  9.       cout<<"*";
  10.            }
  11.       else{
  12.           cout<<" ";
  13.       }
  14.          }
  15.   cout<<endl;
  16.      }
  17. }
Add Comment
Please, Sign In to add comment