Untitled
unknown
plain_text
2 years ago
168 B
7
Indexable
#include <iostream>
using namespace std;
int main() {
int i=1 ;
while( i<=3){
int j=1 ;
while(j<=3){
cout<<"*\t";
j++;}
cout<<endl;
i++;}
}
Editor is loading...
Leave a Comment