3

作者: zealot_bbc8 | 来源:发表于2018-12-20 09:38 被阅读0次

    try { Console.WriteLine("请输入直角三角形高度"); int i = Convert.ToInt32(Console.ReadLine()); int a, b; for (a = 1; a <= i; a++)//行数 { for (b = 0; b < i - a; b++) {Console .Write(" "); } for (b =0; b<2*a-1; b++) { Console.Write("*"); } Console.WriteLine (); } } catch { } Console.ReadKey(); } } }

    相关文章

      网友评论

          本文标题:3

          本文链接:https://www.haomeiwen.com/subject/rkvekqtx.html