返回列表 發帖

C# 7 110 存錢筒

TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 11:49:08

1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS01資料夾中的CSD01.cs進行編寫。依下列題意進行作答:依輸入的錢幣總數,計算及輸出總計,使輸出值符合題意要求。檔案名稱請另存新檔為CSA01.cs,儲存於C:\ANS.CSF\CS01資料夾,再進行評分。

2. 設計說明:
請撰寫程式,讓使用者輸入三個正整數,分別代表存錢筒中的一元、五元及十元的硬幣數量,計算存錢筒的總金額並輸出,金額需格式化輸出為三位一撇的千分號,顯示【x,xxx】。若輸入值為負數、帶有小數點的數字資料或非數字,請轉換為0。

3. 輸入輸出:
輸入說明
三個正整數

輸出說明
總金額(輸出最後一行後不自動換行)

範例輸入1
100
5
50
範例輸出1
625

範例輸入2
money
cash
200
範例輸出2
2,000

4. 評分項目:
(1) 符合設計說明輸出正確格式配分        10
May

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;

  6. namespace CSA01
  7. {
  8.     class CSA01
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             int x1, x2, x3;
  13.             Int32.TryParse(Console.ReadLine(), out x1);
  14.             Int32.TryParse(Console.ReadLine(), out x2);
  15.             Int32.TryParse(Console.ReadLine(), out x3);
  16.             x1 = x1 < 0 ? 0 : x1;
  17.             x2 = x2 < 0 ? 0 : x2;
  18.             x3 = x3 < 0 ? 0 : x3;
  19.             int total = x1 + (x2 * 5) + (x3 * 10);

  20.             Console.Write(total.ToString("#,###"));
  21.             Console.ReadKey();
  22.         }



  23.     }
  24. }
複製代碼
May

TOP

  1. using ConsoleApp1;
  2. using System;//程式庫呼叫
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq.Expressions;
  5. using ABC.qq;


  6. class Program//負責一部分工作的人
  7. {
  8.     static void Main()//method ..Entry Point 程式進入點
  9.     {
  10.         int x1, x2, x3;
  11.         Int32.TryParse(Console.ReadLine(), out x1);//字串轉整數
  12.         Int32.TryParse(Console.ReadLine(),out x2);
  13.         Int32.TryParse (Console.ReadLine(),out x3);
  14.         x1 = x1 < 0 ? 0 : x1;
  15.         x2=x2 < 0 ? 0 :x2;
  16.         x3 = x3 < 0 ? 0 : x3;
  17.         int total = x1 + (x2 * 5) + (x3 * 10);
  18.         Console.WriteLine(total.ToString("#,###"));
  19.         Console.ReadKey();
  20.     }

  21. }
複製代碼
istak.teach2@gmail.com

TOP

返回列表