标签:
1、基本语句、拼接
//输入姓名,年龄,工作单位,输出我叫**,今年**岁了,在**工作。
Console.Write("请输入您的姓名:");
string a = Console.ReadLine();
Console.Write("请输入您的年龄:");
string b = Console.ReadLine();
Console.Write("请输入您的工作单位:");
string c = Console.ReadLine();
//Console.WriteLine("我叫"+a+",今年"+b+"岁了,在"+c+"工作。");
Console.WriteLine("我叫{0},今年{1}岁了,在{2}工作。",a,b,c);
Console.ReadLine();
2、条件运算符
//问:老狼老狼几点了?
//输入:现在的小时数
//判断是am,还是pm
//若是pm,减去12小时报时
Console.Write("老狼老狼几点了?");
//string a = Console.ReadLine();
//int aa;
//aa =int.Parse(a);
int aa = int.Parse(Console.ReadLine());
string b = aa <= 12 ? aa+"am" :(aa-12)+"pm";
Console.WriteLine("现在时间是:"+b);
Console.ReadLine();
标签:
原文地址:http://www.cnblogs.com/hcx999/p/5691229.html