c#程序设计习题.ppt
《c#程序设计习题.ppt》由会员分享,可在线阅读,更多相关《c#程序设计习题.ppt(25页珍藏版)》请在课桌文档上搜索。
1、1,习题训练,1、在 C#中可用作程序变量名的一组标识符是()。,答案:B,void namespace+worda3_b3 _123 YourNamefor-abc Case2a good ref,2,习题训练,2、下面代码的输出结果是()。,答案:D,int x=5;int y=x+;Console.WriteLine(y);y=+x;Console.WriteLine(y);,5 66 75 65 7,3,习题训练,3、当month 等于6时,下面代码的输出结果是()。,答案:C,int days=0;switch(month)case 2:days=28;break;case 4:ca
2、se 6:case 9:case 11:days=30;break;default:days=31;break;Console.WriteLine(days);,0283031,4,习题训练,4、如果 x=35,y=80,下面代码的输出结果是()。,答案:B,if(x 30)if(y=100)Console.WriteLine(危险!);else Console.WriteLine(报警!);else Console.WriteLine(安全);,危险报警报警 安全危险 安全,5,习题训练,5、若循环体内没有改变i的值,两个循环执行的次数分别是()。,答案:A,int i=0;while(+i
3、=10)/循环体语句,10 11 11 10 9 10 10 9,int i=0;do/循环体语句while(+i=10);,6,习题训练,6、下面代码运行后,s 的值是()。,答案:B,int s=0;for(int i=1;i 10)break;if(i%2=0)s+=i;,20 12 10 6,7,习题训练,7、若打印如下图案,画线处应填入()。,答案:B,for(int i=1;i=5;i+)for(int j=_;j=5;j+)Console.Write(*);Console.WriteLine();,1 i i+1 0,*,8,习题训练,8、下面代码实现数组array的冒泡排序,画
4、线处应填入()。,答案:D,int array=20,56,38,45;int temp;for(int i=0;i 3;i+)for(int j=0;j _;j+)if(aj aj+1)temp=aj;arrayj=aj+1;arrayj+1=temp;,4-i i i+1 3-i,9,习题训练,9、下面代码的输出结果是()。,答案:C,static void Main(string args)int radius=2;double area=GetArea(radius);Console.WriteLine(area);Console.ReadLine();private static d
5、ouble GetArea(int r)return 3.14*r*r;,2 3.14 12.56 6.28,10,习题训练,10、下面代码的运行结果是()。,答案:D,static void Main(string args)int num1=34;int num2=55;Increase(ref num1,num2);Console.WriteLine(0和1,num1,num2);Console.ReadLine();private static void Increase(ref int num1,int num2)num1+;num2+;ref 关键字使参数按引用传递。其效果是,当控
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- c# 程序设计 习题

链接地址:https://www.desk33.com/p-236176.html