Answer to Question #160699 in C++ for Naveen K Madival

Question #160699

Write a program that reads in a number and prints out the letter L using '*' characters with each line in the L having width n. Further, the length of the horizontal bar should be 4n, and that of the vertical bar (i.e. not including the portion overlapping with the horizontal bar) should be 3n. Thus for n=3 your program should print



1
Expert's answer
2021-02-02T14:32:03-0500
#include <iostream>
using namespace std;

int main()
{
  int n;
  cout << "n = ";
  cin >> n;
  for(int i = 0; i <3*n; i++)
    cout << '*' << endl;

  for(int i = 0; i < 4*n; i++)
    cout << '*';
  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