Answer to Question #13849 in C++ for Darryl kaye Abella Sanga
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
2012-08-30T10:50:55-0400
#include <iostream>
using namespace std;
void main(){
int n, m;
cout << "Enter N = ";
cin >> n;
cout << "Enter M = ";
cin >> m;
for(int i=0; i<m; i++){
for(int j=0; j<n; j++)
cout << "*";
cout << endl;
}
}
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!
Learn more about our help with Assignments:
C++
Comments
Leave a comment