人品計算器

2021-06-27 07:28:49 字數 1152 閱讀 7920

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace consolepersonality

", (int)item);

score += (int)item;

}//3.將分數控制在100以內

score %= 100;

//4.根據score分值給出對應的評語(switch語句)

string comment = "";

if (score <= 20) comment = "非人類,無法評價!";

else if (score <= 40) comment = "掉人堆裡都找不出來的普通人……";

else if (score <= 60) comment = "拜李宇春哥不靈,叫都敏俊xi不應的倒霉蛋";

else if (score <= 80) comment = "擁有滑板鞋的思想富足者";

else comment = "掌控藍翔挖掘機技術的宇宙強者";

string name = new string[5] ;

console.writeline("請輸入名字");

for (int i = 0; i < name.length; i++)

}string a = ;

for (int i = 0; i < a.length; i++)

}string[,] b = , , , , };

for (int i = 0; i < 5; i++)

}//6.輸出整體評價

console.clear();

console.writeline("人品評估報告");

console.writeline("姓名:", strname);

console.writeline("分值:", score);

console.writeline("評價:", comment);

人品計算器

作 者 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...

人品計算器

using system using system.collections.generic using system.linq using system.text namespace 人品計算器 name foreach var item in name score item score score...