第九次作业第一题

#代码

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 第九次作业第一题 { class Program { static void Main(string[] args) { /**请输入一个值:6 *0+6=6 *1+5=6 *2+4=6 *3+3=6 *4+2=6 *5+1=6 *6+0=6 */ Console.WriteLine("请输入一个数字"); int num=Convert.ToInt32(Console.ReadLine()); for (int i = 0; i <= num; i++) { Console.WriteLine("{0}+{1}={2}", i, num - i, num); } Console.ReadKey(); } } }

#效果

第九次作业第一题_第1张图片
图片发自App

你可能感兴趣的:(第九次作业第一题)