}//密碼檢測
public static bool check()
)", 3 - count);
count++;
//防止輸入累加
input = string.empty;
secretinput(ref input);
}if (input.equals(password))
else}}
}car_base.cs
using system;
namespace day0908.exp1
public class car_carryperson:car_base
public class car_carrygoods :car_base
public class car_carrygoodsperson : car_base
}
car_list.cs
using system;
namespace day0908.exp1
}//馬自達6
public class car_carryperson_2 : car_carryperson
}//金龍(客車)
public class car_carryperson_3 : car_carryperson
}//松花江
public class car_carrygoods_1 :car_carrygoods
}//依維柯
public class car_carrygoods_2 : car_carrygoods
}//皮卡雪6
public class car_carrygoodsperson_1 : car_carrygoodsperson}}
car_factory.cs
using system;
namespace day0908.exp1
class car_factory
}public static car_base getcar(int carnumber)}}
}
car_lease.cs
using system;
using system.collections;
namespace day0908.exp1
輛車的序號:",i+1);
int car_id = convert.toint16(console.readline());
totalprice += car_factory.getcar(car_id).price;
if (car_factory.getcar(car_id) is car_carryperson)
else if(car_factory.getcar(car_id) is car_carrygoods)
else}}
console.writeline("請輸入租車天數:");
int day = convert.toint16(console.readline());
console.writeline("***可載人的車有:");
foreach(int i in personcar)
console.writeline("【總載人:人】", totalperson);
console.writeline("\n***可載貨的車有:");
foreach (int i in goodscar)
console.writeline("【總載貨:噸】", totalweight);
console.writeline("\n***租車總**:元", totalprice*day);}}
}
flash.cs
using system;
namespace day0908.exp1
else}}
}
optimize.cs
using system;
using system.text;
namespace day0908.exp1
public static void systemoptimize()
}class str
public str(string data)
/*二元運算子的引數之一必須是包含型別*/
/*使用者定義的運算子「str.operator *(str, int)」必須宣告為 static 和 public*/
public static string operator *(str a, int b)
return temp.tostring();}}
}
run.cs
using system;
namespace day0908.exp1
else
console.readline();}}
}
停車管理系統
停車管理系統設計 1.基礎版本 屬性 停車場最多停車數 max car 當前停車數 cur car 當前停車列表 car list 方法 停車 park 1 如果沒有達到最多停車數,則允許停車 2 如果沒有達到最多停車數,則允許停車 出停車場 exit 1 判斷該汽車是否進入,如果進入,則刪除car...
停車管理系統
1.基礎版本 屬性 停車場最多停車數 max car 當前停車數 cur car 當前停車列表 car list 方法 停車 park 1 如果沒有達到最多停車數,則允許停車 2 如果沒有達到最多停車數,則允許停車 出停車場 exit 1 判斷該汽車是否進入,如果進入,則刪除car list裡面相關...
簡單泊車管理系統 c 實現
泊車系統 該系統要求對乙個檔案中所儲存的汽車資料進行各種常規操作,如 查詢 計費 顯示等功能。目的是熟練掌握檔案 陣列的各種操作,以及一些演算法思想的應用,實現乙個簡單的泊車管理系統。include include include include include include using name...