2022年电大C语言复习题 .pdf

上传人:Q****o 文档编号:26218335 上传时间:2022-07-16 格式:PDF 页数:8 大小:36.62KB
返回 下载 相关 举报
2022年电大C语言复习题 .pdf_第1页
第1页 / 共8页
2022年电大C语言复习题 .pdf_第2页
第2页 / 共8页
点击查看更多>>
资源描述

《2022年电大C语言复习题 .pdf》由会员分享,可在线阅读,更多相关《2022年电大C语言复习题 .pdf(8页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、1 / 8 复习题一、填空题(每空 2 分)1、为使 c#源程序能够编译和执行,必须安装。2、c#中的三元运算符是。3、类成员的可访问形式为_、_、 _。4、当整数a 赋值给一个object 对象时,整数a 将会被。5、float f=263.981F ; int i=(int)f;i 的值是。6、面向对象的语言具有_性、 _性和 _性。7、 ADO.NET中的五个主要对象_、_ 、_、_、_。二、写出下列程序运行结果(每题6 分)1、using System。class jieguo1 public static void Main() bool x。int y=10,z=3 。uint i

2、=8,j=65535 。x=(y2 。Console.WriteLine( “ i=0 ” ,i)。 2、using System。class jieguo2 public static void Main() int a,x,y 。string z。Console.WriteLine( “ 请输入一个整数:“)。z=Console.ReadLine() 。x=Int32.Parse(z) 。if(x0) a=-1 。 else a=x/10。switch(a) case -1:y=0。 break。精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第

3、1 页,共 8 页2 / 8 case 0:y=x。break。case 1:y=10。break。case 2: case 3:y=(int)(-0.5*x+30) 。break。default:y=-2 。break。 if (y!=-2) Console.WriteLine(“ y=0 ” ,y)。else Console.WriteLine( “ error!” )。 x=10。 y 是:x=-10 。y 是:x=40。 y 是:3、using System。class jieguo3 public static void Main() string aa=” 这是第一 t 行 ,n

4、这是第二行 .n 这是第 ” 三 ” 行” 。string bb= ” 这是第一 t 行,n 这是第二行 .n 这是第 ” 三 ” 行” 。Console.WriteLine( “ aa为: ” )。Console.WriteLine(aa) 。Console.WriteLine( “ bb 为: ” )。Console.WriteLine(bb) 。 4、using System。public class jieguo4 public static void Main() int myArray = new int2。myArray0 = new int5 1,3,5,7,9。myArray

5、1 = new int4 0, 2, 4, 6。for (int i=0 。 i myArray.Length 。 i+) Console.Write( 第(0) 个数组 : , i) 。for (int j=0 。 j myArrayi.Length。 j+) Console.Write(0 , myArrayij)。 Console.WriteLine() 。 5、精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 2 页,共 8 页3 / 8 using System。class jieguo5 public static void Main()

6、 int varA = 10 。int varB = 20 。 int andResult = varA & varB 。 Console.WriteLine(10 & 20 = 0, andResult)。 int orResult = varA | varB 。 Console.WriteLine(10 | 20 = 0, orResult)。 int notorResult = varA varB 。 Console.WriteLine(10 20 = 0, notorResult)。 Console.WriteLine( 0:x8 = 1:x8, varA, varA)。 6、usin

7、g System。class jieguo6 public static void Main() int i=1,sum=0 。 while(i=100) sum +=i 。 i+ 。 Console.WriteLine(“ sum=” ,sum)。 7、using System。class jieguo7 public static void Main() int i,j,k,m 。int queArray = new int5,2,8,12,36,24,88,1,103,69。for(j=0 。 jqueArray.Length 。j+) k=j 。for(i=j+1 。i10 。i+)

8、if(queArrayiqueArrayk) k=i。 if(k!=j) 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 3 页,共 8 页4 / 8 m=queArrayj 。queArrayj = queArrayk。queArrayk = m 。 for(j=0 。 j10。j+) Console.Write(0 , queArrayj)。 8、using System。public class jieguo8 static void Add(int i) i+ 。 static void AddWithRef(ref int i) i+ 。

9、 public static void Main() int i1 = 10 。int i2 = 20 。Add(i1) 。AddWithRef(ref i2) 。Console.WriteLine(“i1=” +i1) 。Console.WriteLine(“i2=” +i2) 。 9、三、指出程序或函数的功能(每题6 分)1、using System。class gongneng1 public static void Main() for(int i=0 。i15。i+) if(i=12) continue 。精选学习资料 - - - - - - - - - 名师归纳总结 - - - -

10、 - - -第 4 页,共 8 页5 / 8 Console.WriteLine(“ i=0” ,i)。 2、using System。class gongneng2 public static void Main() for(int i = 1 。 i = 9 。 i+) for(int j = 1 。 j = i 。 j+) Console.Write(0 x1=2t, i, j, i*j)。 Console.WriteLine() 。 3、using System。class gongneng3 public static void Main(String args) string st

11、rName。strName = args0 。Console.WriteLine(This is the first argument: 0!, strName)。 4、using System。class gongneng4 public static int Main(string args) if(args.Length = A) if(chLetter = a & chLetter = z) Console.WriteLine(0 是个小写字母, chLetter) 。return 0。 if(Char.IsDigit(chLetter) Console.WriteLine(0 是个数

12、字 , chLetter) 。return 0。 Console.WriteLine(0 是个特殊字符, chLetter) 。return 1。 5、using System。class gongneng5 public static void Main() float a= new float 82,90,78,63,75,94,87,86,99,71。int i 。float s=0,aver,max=0,min=100 。for(i=0 。 imax) max=ai。if(ai=1) for(int i=2 。i=n。i+) s *= i 。 Console.WriteLine(n!=

13、0, s)。 7、using System。class gongneng7 public static void Main() char ch = (char) Console.Read() 。 switch(ch.ToLower() case a : case e : case i : case o : case u : Console.WriteLine( 字母 0 是元音字母 , ch)。break。 default : Console.WriteLine( 字母 0 是辅音字母 , ch)。break。 四、编程题(每题 10 分)1、 请学生通过键盘输入行数和列数,然后打出一个由星号

14、组成的方阵。(10 分)例如:输入行号 3 输入列号 3 结果为: * * * * * * * * * 2 、 一 列 数 的 规 则 如 下 : 1 、 1 、 2 、 3 、 5 、 8 、 13 、 21 、 34. 求第 30 位数是多少,用递归算法实现。(10 分)3、由程序随机产生10 个数,并把这10 个数按从小到大的顺序输出。4、输出如下所示的九九乘法表。1*1=1 2*1=2 2*2=4 3*1=3 3*2=6 3*3=9 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 7 页,共 8 页8 / 8 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 精选学习资料 - - - - - - - - - 名师归纳总结 - - - - - - -第 8 页,共 8 页

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 技术资料 > 技术总结

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁