Untitled

Anonymous
plain_text
06/01/2024 12:23 PM
224 B
15
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