Answer to Question #15532 in C++ for ericka

Question #15532
write a program that will display the following pattern, given the value of n and m. example if n=4, and m= 3, output:
++++
++++
++++
1
Expert's answer
2012-09-28T12:00:18-0400
#include <iostream>
using namespace std;

int _tmain(int argc,
_TCHAR* argv[])
{
int n=0;
int m=0;
cout<<"Please enter n:
"<<endl;
cin>>n;
cout<<"Please enter m:
"<<endl;
cin>>m;
for (int i=0; i<m; i++){
for (int j=0;
j<n; j++){
cout<<"+";
}
cout<<endl;
}
return
0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS