#作业要求
根据输入的数字输出所有加法公式
#程序
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();
}
}
}
网友评论