- using ConsoleApp1;
- using System;//程式庫呼叫
- using System.ComponentModel.DataAnnotations;
- using System.Linq.Expressions;
- using ABC.qq;
- class Program//負責一部分工作的人
- {
- static void Main()//method ..Entry Point 程式進入點
- {
- int x1, x2, x3;
- Int32.TryParse(Console.ReadLine(), out x1);//字串轉整數
- Int32.TryParse(Console.ReadLine(),out x2);
- Int32.TryParse (Console.ReadLine(),out x3);
- x1 = x1 < 0 ? 0 : x1;
- x2=x2 < 0 ? 0 :x2;
- x3 = x3 < 0 ? 0 : x3;
- int total = x1 + (x2 * 5) + (x3 * 10);
- Console.WriteLine(total.ToString("#,###"));
- Console.ReadKey();
- }
- }
複製代碼 |