为了账号安全,请及时绑定邮箱和手机立即绑定

扩展代码询问

要是输出等腰三角形的样子,代码怎么打啊

正在回答

1 回答

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Console等腰三角形
{
    class Program
    {
        static void Main(string[] args)
        {
            for(int i=0;i<10;i++)
            {
                for (int j = 0; j < 10 - i; j++)
                    Console.Write(" ");
                for (int j = 1; j < 2 * i; j++)
                {
                    Console.Write("*");
                }
                Console.WriteLine();
            }
        }
    }
}


1 回复 有任何疑惑可以回复我~
#1

qq_sure碩儿_0 提问者

谢谢哦
2018-02-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C#开发轻松入门
  • 参与学习       254141    人
  • 解答问题       1459    个

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

进入课程

扩展代码询问

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信