C#練習獲取使用者輸入的倆個數字並且求和
阿新 • • 發佈:2018-12-14
程式碼
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _005_練習_輸入倆數求和 { class Program { static void Main(string[] args) { Console.WriteLine("請輸入第一個數:"); string str1 = Console.ReadLine(); int num1 = Convert.ToInt32(str1); Console.WriteLine("請輸入第二個數:"); string str2 = Console.ReadLine(); int num2 = Convert.ToInt32(str2); Console.WriteLine(num1+num2); Console.ReadKey(); } } }
執行結果