You can print a right triangle composed of * by using a function. The function requires the number of rows to be input. In the main method, obtain the number of rows through user input, and then call the function for printing.

Source: Internet
Author: User

# Include <stdio. h>

/*
1. Use a function to print a right triangle consisting of *. The function requires the number of rows to be input. In Main
Method, obtain the number of rows through user input, and then call the function to print.
Triangle style:
*
**
***
****
*****
******

*/

Int Sanjiao (INT hang)
{
Int I;
Int J;
For (I = 0; I {
For (j = 0; j <I + 1; j ++)
{
Printf ("*");
}
Printf ("\ n ");
}

}

Void main ()
{
Int shuru;
Printf ("Enter the number of rows in the triangle you need :");
Scanf ("% d", & shuru );
Sanjiao (shuru );
Printf ("\ n ");
}

You can print a right triangle composed of * by using a function. The function requires the number of rows to be input. In the main method, obtain the number of rows through user input, and then call the function for printing.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.