using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Plus { class Program { static void Main(string[] args) { Console.WriteLine("Please Enter A and B:"); int a, b; Console.Write("A = "); a = Convert.ToInt32(Console.ReadLine()); Console.Write("B = "); b = int.Parse(Console.ReadLine()); int c = a + b; Console.WriteLine("{0} + {1} = {2}", a, b, c); Console.ReadKey(); } } }
时间: 2024-12-11 12:56:44