標題:
C# 7 106 最大及最小值
[打印本頁]
作者:
may
時間:
2024-1-8 21:40
標題:
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
時間:
2024-1-8 23:07
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace CSA01
{
class CSA01
{
static void Main(string[] args)
{
int x1, x2, x3,x4;
Int32.TryParse(Console.ReadLine(), out x1);
Int32.TryParse(Console.ReadLine(), out x2);
Int32.TryParse(Console.ReadLine(), out x3);
Int32.TryParse(Console.ReadLine(), out x4);
x1 = x1 < 0 ? 0 : x1;
x2 = x2 < 0 ? 0 : x2;
x3 = x3 < 0 ? 0 : x3;
x4 = x4 < 0 ? 0 : x4;
int max= Math.Max(Math.Max(x1, x2), Math.Max(x3, x4));
int min = Math.Min(Math.Min(x1, x2), Math.Min(x3, x4));
print(min, max);
}
static void print(int min,int max)
{//min=>smallest,max=>largest
Console.WriteLine("smallest:" + min.ToString());
Console.Write("largest:" + max.ToString());
Console.ReadKey();
}
}
}
複製代碼
回復
1#
may
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2