C#第九次作业01

2018-11-21  本文已影响0人  谭叁叁

#作业要求

根据输入的数字输出所有加法公式

#程序

namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("请输入数字");

            int a = Convert.ToInt32(Console.ReadLine());

            for (int i = 0; i <= a; i++)

            {

                Console.WriteLine("{0}+{1}={2}", i, a - i, a);

            }

            Console.ReadKey();

        }

    }

}

#效果

C#第九次作业01

上一篇下一篇

猜你喜欢

热点阅读