ylbtech-Arithmetic:Console-算法[for]-输出等腰三角形 |
1.A,案例 |
-- ========================================================
-- ylb:算法
-- Type:算法[for]
-- munu:输出等腰三角形
-- ylb:算法
-- Type:算法[for]
-- munu:输出等腰三角形
-- 20:32 2012/3/16
-- ========================================================
-- ========================================================
1.B,解决方案 |
using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { //输出等腰三角形,如下所示 // * // *** //***** int i, m; for (i = 1; i <= 20; i++) { for (m = 1; m <= 20 - i; m++) { Console.Write(" "); } for (m = 1; m < i * 2 ; m++) { Console.Write("*"); } Console.WriteLine(); } } } }
1.C,运行结果 |
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
*********************
***********************
*************************
***************************
*****************************
*******************************
*********************************
***********************************
*************************************
***************************************
请按任意键继续. . .