//3.將分數控制在100以內
score %= 100;
//4.根據score分值給出對應的評語(switch結構)
string comment = "";
switch (score/10)
//5.特例處理
if (strname.equals("黃譯平"))//判斷strname是否等於
//6.輸出整體評價
console.clear();
console.writeline("人品評估報告");
console.writeline("姓名:", strname);
console.writeline("分值:", score);
console.writeline("評價:", comment);
人品計算器1 0
console.writeline 請輸入姓名 string strname strname console.readline int score 0 for int i 0 i strname.length i score 100 string x switch score 10 if strna...
人品計算器
作 者 a09 完成日期 2014年 11 月 25 日 版 本 號 v1.0 問題描述 建立乙個程式來計算人品 輸入描述 輸入乙個姓名 程式輸出 對應分數的人品 using system using system.collections.generic using system.linq usin...
人品計算器
人品計算器控制台版本2.0 console.title 人品計算機控制台版本2.0 1.輸入姓名並儲存 console.writeline 請輸入姓名 string strname strname console.readline 2.讀取姓名中每個字元的unicode編碼並累加 for迴圈法 in...