C#编程:编写一个程序,从键盘上输入3个数,输出这3个数的积及它们的和。要求编写成控制台应用程序。

日期:2016-09-30 18:34:38 人气:1

C#编程:编写一个程序,从键盘上输入3个数,输出这3个数的积及它们的和。要求编写成控制台应用程序。

using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { Console.Write("输入你的第一个数:"); string d
    A+
热门评论