- 1、本文档共38页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C#编程题和代码.doc
1、从键盘输入一个正整数,按数字的相反顺序输出。
2、从键盘上输入两个整数,由用户回答它们的和,差,积,商和取余运算结果,并统计出正确答案的个数。
3、写一条for语句,计数条件为n从100~200,步长为2;然后再用while语句实现同样的循环。
4、编写一段程序,运行时向用户提问“你考了多少分?(0~100)”,接受输入后判断其等级并显示出来。判断依据如下:
等级={优 (90~100分);良 (80~89分);中 (60~69分);差 (0~59分);}
Console.WriteLine(你考了多少分?(1~100));
int a = int.Parse(Console.ReadLine());
switch (a / 10)
{
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
Console.WriteLine(等级为差);
break;
case 6:
Console.WriteLine(等级为中);
break;
case 7:
case 8:
Console.WriteLine(等级为良);
break;
case 9:
case 10:
Console.WriteLine(等级为优);
break;
default:
Console.WriteLine(输入有误,请输入0-100的数。);
break;
}
Console.ReadLine();
}
5、输入一个整数,将各位数字反转输出。
static void Main(string[] args)
{
Console.WriteLine(请输入数字:);
string str;
str = Console.ReadLine();
Console.WriteLine(反序后为;);
change(ref str);
}
static void change(ref string str1)
{
int m;
int a = 0;
m = str1.Length;
char[] arr = new char[m];
for (int i = str1.Length - 1; i = 0; i--)
{
arr[a] = str1[i];
a++;
}
foreach (char b in arr)
{
Console.Write({0}, b);
}
Console.ReadLine();
}
6、使用穷举法并分别用for、while、do…while循环语句求出1~100之间的质数。
static void Main(string[] args)
{
Console.WriteLine(使用For语句:);
WithFor();
Console.WriteLine();
Console.WriteLine(使用While语句:)
文档评论(0)