返回列表 發帖

C# 7 106 最大及最小值

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

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

2. 設計說明:
請撰寫程式,讓使用者輸入四個整數,以Math套件功能取得最大值及最小值,再傳至print方法,若輸入值為負數、帶有小數點的數字資料或非數字資料,請轉換為0。
* 提示1:輸入10.0,請轉換為0。
* 提示2:輸入10.,請轉換為0。

3. 輸入輸出:
輸入說明
四個整數

輸出說明
最小值smallest
最大值largest(輸出最後一行後不自動換行)

範例輸入1
100
92011
2.
275
範例輸出1
smallest:0
largest:92011

範例輸入2
-1029
-90
12
1.1
範例輸出2
smallest:0
largest:12

範例輸入3
monday
9
kio
-9
範例輸出3
smallest:0
largest:9

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. using System.Drawing;

  7. namespace CSA01
  8. {
  9.     class CSA01
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int x1, x2, x3,x4;
  14.             Int32.TryParse(Console.ReadLine(), out x1);
  15.             Int32.TryParse(Console.ReadLine(), out x2);
  16.             Int32.TryParse(Console.ReadLine(), out x3);
  17.             Int32.TryParse(Console.ReadLine(), out x4);
  18.             x1 = x1 < 0 ? 0 : x1;
  19.             x2 = x2 < 0 ? 0 : x2;
  20.             x3 = x3 < 0 ? 0 : x3;
  21.             x4 = x4 < 0 ? 0 : x4;
  22.             int max= Math.Max(Math.Max(x1, x2), Math.Max(x3, x4));
  23.             int min = Math.Min(Math.Min(x1, x2), Math.Min(x3, x4));
  24.             print(min, max);
  25.         }
  26.         static void print(int min,int max)
  27.         {//min=>smallest,max=>largest
  28.             Console.WriteLine("smallest:" + min.ToString());
  29.             Console.Write("largest:" + max.ToString());
  30.             Console.ReadKey();
  31.         }
  32.     }
  33. }
複製代碼
回復 1# may
May

TOP

返回列表