標題:
C# 7 602 汽車外觀設計
[打印本頁]
作者:
may
時間:
2024-1-8 22:46
標題:
C# 7 602 汽車外觀設計
TQC+ 物件導向程式語言
最新一次更新時間:2024-01-05 17:48:32
1. 題目說明:
請新增一個主控台應用程式,加入C:\ANS.CSF\CS06資料夾中的CSD06.cs進行編寫。依下列題意進行作答:定義汽車基本屬性,使輸出值符合題意要求。檔案名稱請另存新檔為CSA06.cs,儲存於C:\ANS.CSF\CS06資料夾,再進行評分。
2. 設計說明:
專案已內含名為car的類別,內含cc屬性,請建立int型態的seats、color、doors屬性,其中color屬性請使用列舉,RED=1、BLUE=2、WHITE=3。
於Main()中撰寫程式,讓使用者依序輸入以半形空格隔開的車子的cc數、座位數量、顏色及車門數量。
輸出格式為【新車各項屬性:{車子cc數}cc{座位數量}{顏色}{車門數量}】,輸出字串中無任何空格,如:【1500cc4RED4】,若輸入不在規定範圍的顏色,請輸出【error】。
* 提示:{名稱} 用來表示該名稱的變數,如:{車子cc數}=1500。
3. 輸入輸出:
輸入說明
車子的cc數 座位數量 顏色 車門數量
(資料之間以半形空格隔開)
輸出說明
格式化輸出新車各項屬性(輸出最後一行後不自動換行)
範例輸入1
1500 4 1 4
範例輸出1
1500cc4RED4
範例輸入2
2000 4 3 5
範例輸出2
2000cc4WHITE5
範例輸入3
1800 4 4 5
範例輸出3
error
4. 評分項目:
(1) 符合設計說明輸出正確格式配分 20
作者:
may
時間:
2024-1-9 09:50
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace CSA06
{
class CSA06
{
static void Main(string[] args)
{
try
{
string data =Console.ReadLine();
if (data == "") { throw new Exception(); }
string[] str = data.Split(' ');
if (str.Length != 4) { throw new Exception(); }
car newcar = new car();
newcar.cc = Convert.ToInt32(str[0]);
newcar.seats = Convert.ToInt32(str[1]);
newcar.color = Convert.ToInt32(str[2]);
newcar.doors = Convert.ToInt32(str[3]);
bool isok = Enum.IsDefined(typeof(CarColor), newcar.color);
if (!isok)
{
throw new Exception();
}
CarColor colors;
Enum.TryParse<CarColor>(newcar.color.ToString(), true, out colors);
Console.Write("{0}cc{1}{2}{3}", newcar.cc, newcar.seats, colors.ToString(), newcar.doors);
}
catch
{
Console.Write("error");
}
Console.ReadKey();
}
}
public enum CarColor:int
{
RED = 1,
BLUE = 2,
WHITE = 3
}
class car
{
private int _cc = 0;
public int cc
{
get
{
return _cc;
}
set
{
_cc = value;
}
}
private int _seats =0;
public int seats
{
get
{
return _seats;
}
set
{
_seats = value;
}
}
private int _color = 0;
public int color
{
get
{
return _color;
}
set
{
_color = value;
}
}
private int _doors = 0;
public int doors
{
get
{
return _doors;
}
set
{
_doors = value;
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2