人品计算器 C#源代码

搞笑娱乐小程序人品计算器的C#源代码,从软件项目中抽取出来的,方便编程初学者参考试用。

///

/// 人品计算器 V1.0

/// 2022年05月04日

///

public class RenPinBLL

{

///

/// 获取人品得分

///

/// 姓名

/// 人品得分

private int calcScore(string name)

{

int score = 0;

//数组array为对应的ASCII数组

byte[] array = Encoding.ASCII.GetBytes(name);

for (int i = 0; i < array.Length; i++)

{

int asciicode = (int)(array[i]);

score += asciicode;

}

return score % 100;

}

///

/// 获取人品评价

///

/// 人品得分

/// 人品评价

private string getAppraise(int score)

{

string appraise = "";

if (score <= 0)

appraise = "你一定不是人吧?怎么一点人品都没有?!";

else if (score > 0 && score <= 5)

appraise = "算了,跟你没什么人品好谈的...";

else if (score > 5 && score <= 10)

appraise = "是我不好...不应该跟你谈人品问题的...";

else if (score > 10 && score <= 15)

appraise = "杀过人没有?放过火没有?你应该无恶不做吧?";

else if (score > 15 && score <= 20)

appraise = "你貌似应该三岁就偷看隔壁大妈洗澡的吧...";

else if (score > 20 && score <= 25)

appraise = "你的人品之低下实在让人惊讶啊...";

else if (score > 25 && score <= 30)

appraise = "你的人品太差了。你应该有干坏事的嗜好吧?";

else if (score > 30 && score <= 35)

appraise = "你的人品真差!肯定经常做偷鸡摸狗的事...";

else if (score > 35 && score <= 40)

appraise = "你拥有如此差的人品请经常祈求佛祖保佑你吧...";

else if (score > 40 && score <= 45)

appraise = "老实交待..那些论坛上面经常出现的偷拍照是不是你的杰作?";

else if (score > 45 && score <= 50)

appraise = "你随地大小便之类的事没少干吧?";

else if (score > 50 && score <= 55)

appraise = "你的人品太差了..稍不小心就会去干坏事了吧?";

else if (score > 55 && score <= 60)

appraise = "你的人品很差了..要时刻克制住做坏事的冲动哦..";

else if (score > 60 && score <= 65)

appraise = "你的人品比较差了..要好好的约束自己啊..";

else if (score > 65 && score <= 70)

appraise = "你的人品勉勉强强..要自己好自为之..";

else if (score > 70 && score <= 75)

appraise = "有你这样的人品算是不错了..";

else if (score > 75 && score <= 80)

appraise = "你有较好的人品..继续保持..";

else if (score > 80 && score <= 85)

appraise = "你的人品不错..应该一表人才吧?";

else if (score > 85 && score <= 90)

appraise = "你的人品真好..做好事应该是你的爱好吧..";

else if (score > 90 && score <= 95)

appraise = "你的人品太好了..你就是当代活雷锋啊...";

else if (score > 95 && score <= 99)

appraise = "你是世人的榜样!";

else if (score > 100 && score < 105)

appraise = "天啦!你不是人!你是神!!!";

else if (score > 105 && score < 999)

appraise = "你的人品已经过 100 人品计算器已经甘愿认输,3秒后人品计算器将自杀啊";

else if (score > 999)

appraise = "你的人品竟然负溢出了...我对你无语..";

return appraise;

}

///

/// 计算人品

///

/// 姓名

/// 人品信息

public RenPinInfo Calc(string name)

{

RenPinInfo renPinInfo = new RenPinInfo();

renPinInfo.Name = name;

renPinInfo.Score = calcScore(name);

renPinInfo.Appraise = getAppraise(renPinInfo.Score);

return renPinInfo;

}

}

public class RenPinInfo

{

public string Name { set; get; }

public int Score { set; get; }

public string Appraise { set; get; }

}

本站中所有的计算器的计算结果仅供参考,本站对此结果的准确性不承担任何责任,实际数额以银行/保险公司/国家相关机构确认的结果为准。

Copyright 最新版贷款计算器工具 All Rights Reserved. 皖ICP备12016986号-1