logo CodeStepByStep logo

Triangle

Language/Type: C# parameters
Related Links:

Write a method named Triangle that accepts an integer parameter representing a size in characters, and prints to the console a right-aligned right Triangle figure whose non-hypotenuse sides are that length. For example, the call of Triangle(5); should print the following output:

    *
   **
  ***
 ****
*****

You may assume that the value passed for the size is at least 1.

Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.