有个叫卡卡西的人在旅店登记的时候前台让他填一张表这张表里的内容要
2018-12-19 本文已影响0人
29e0c7456d81
/**有个叫卡卡西的人在旅店登记的时候前台让他填一张表这张表里的内容要存到电脑上,有姓名、年龄、邮箱、家庭住址、工资。
* 之后把这些信息显示出来
* 样例:我叫卡卡西,我住在火影村,我今年30岁了我的邮箱是卡卡西@qq.com.我的工资是2000
* */
string name = "卡卡西";
int age = 30;
string email = kaikaixi@qq.com;
String addr = "文教路一号";
decimal salar = 2000m;
Console.WriteLine("我叫" + name + "我住在" + addr + "我今年" + age + "了" + "我的邮箱是:" + email + "我的工资是" + salar);
Console.ReadKey();