diff --git a/maisankethoon.cpp b/maisankethoon.cpp new file mode 100644 index 0000000..4f83352 --- /dev/null +++ b/maisankethoon.cpp @@ -0,0 +1,19 @@ +#include + +using namespace std; + +int main(){ + int i, j, n; + cout<<"enter the number of rows "; + cin>>n; + for(i=1; i<=n; i++) + { + for(j=1; j<=i; j++){ + cout<<"* "; + } + cout<<"\n"; + } + + return 0; + +}