電大C期末考試復習資料小抄_第1頁
電大C期末考試復習資料小抄_第2頁
電大C期末考試復習資料小抄_第3頁
電大C期末考試復習資料小抄_第4頁
電大C期末考試復習資料小抄_第5頁
已閱讀5頁,還剩37頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、專業(yè)好文檔三、給出下列程序運行后的輸出結果 1. #include<iostream.h> void main() int s=0; for(int i=1;i+) if(s>50) break; if(i%2=0) s+=i; cout<<"i,s="<<i<<","<<s<<endl; 2. #include<iostream.h> void main() char a="abcdabcabfgacd" int i1=0, i2=0, i=0

2、; while(ai) if(ai='a') i1+; if(ai='b') i2+; i+; cout<<i1<<' '<<i2<<endl; 3. #include<iomanip.h> void main() int a9=2,4,6,8,10,12,14,16,18; for(int i=0;i<9;i+) cout<<setw(5)<<*(a+i); if(i+1)%3=0) cout<<endl; 4. #include<iom

3、anip.h> void le(int* a, int* b) int x=*a; *a=*b; *b=x; cout<<*a<<' '<<*b<<endl; void main() int x=10, y=25; le(&x,&y); cout<<x<<' '<<y<<endl; 5. #include<iostream.h> class a int a,b; public: a() a=b=0; a(int aa, int bb)

4、 a=aa; b=bb; cout<<a<<' '<<b<<endl; ; void main() a x,y(2,3),z(4,5); 6#include<iostream.h> template<class tt> class ff tt a1, a2, a3; public: ff(tt b1, tt b2, tt b3) a1=b1; a2=b2; a3=b3; tt sum() return a1+a2+a3; ; void main() ff<int> x(2,3,4),y(5,7,

5、9); cout<<x.sum()<<' '<<y.sum()<<endl; 7. #include<iostream.h> void sb(char ch) switch(ch) case 'a': case 'a': cout<<"well!"break; case 'b': case 'b': cout<<"good!"break; case 'c': case '

6、;c': cout<<"pass!"break; default: cout<<"bad!"break; void main() char a1='b',a2='c',a3='f' sb(a1);sb(a2);sb(a3);sb('a'); cout<<endl; 8. #include<iostream.h> #include<string.h> void main() char* a5="student&quo

7、t;,"worker","cadre","soldier","peasant" char *p1, *p2; p1=p2=a0; for(int i=0;i<5;i+) if(strcmp(ai, p1)>0) p1=ai; if(strcmp(ai, p2)<0) p2=ai; cout<<p1<<' '<<p2<<endl; 9. #include<iostream.h> int a=5; void main() in

8、t a=10, b=20; cout<<a<<' '<<b<<endl; int a=0,b=0; for(int i=1; i<6; i+) a+=i; b+=a; cout<<a<<' '<<b<<' '<<:a<<endl; cout<<a<<' '<<b<<endl; 10. #include<iomanip.h> int lb(int *

9、a, int n) int s=1; for(int i=0;i<n;i+) s*=*a+; return s; void main() int a=1,2,3,4,5,6,7,8; int b=lb(a,5)+lb(&a3,3); cout<<"b="<<b<<endl; 11. #include<iostream.h> #include<string.h> struct worker char name15; /姓名 int age; /年齡 float pay; /工資 ; void main(

10、) worker x; char *t="liouting" int d=38; float f=493; strcpy(,t); x.age=d; x.pay=f; cout<<<<' '<<x.age<<' '<<x.pay<<endl; 12. #include<iostream.h> class a int a; public: a(int aa=0) a=aa; a() cout<<"destructor

11、 a!"<<a<<endl; ; class b: public a int b; public: b(int aa=0, int bb=0): a(aa) b=bb; b() cout<<"destructor b!"<<b<<endl; ; void main() b x(5), y(6,7); /后定義的變量將先被釋放 三、給出下列程序運行后的輸出結果1. i,s=15,562. 4 33. 2 4 6 8 10 12 14 16 184. 25 10 25 105. 2 3 4 56. 9 217

12、. good!pass!bad!well!8. worker cadre9. 10 20 15 35 5 10 2010. b=24011. liouting 38 49312. destructor b!7 destructor a!6 destructor b!0 destructor a!5三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> void main() int n=5, sum=0; while(n>0) sum+=n; n-; cout<<"sum="<<

13、sum<<endl; 運行結果: 2. #include<iostream.h> const int n=6; void main() int an=76,83,54,62,40,65; int max=a0; for(int i=1;i<n;i+) if(ai>max) max=ai; cout<<"max="<<max<<endl; 運行結果: 3. #include<iomanip.h> void main() int a8=4,8,15,16,20,30,48,62; int *p=

14、a, s=0; while(p<a+8) s+=*p; p+=3; cout<<s<<endl; 運行結果: 4.#include<iomanip.h> int lf(int x, int y) x=x+y; y=x+y; return x+y; void main() int x=2, y=3; cout<<lf(x,y)<<endl; 運行結果: 5. #include<iostream.h> class a int a,b; public: a() a=b=0; a(int aa, int bb) a=aa;

15、b=bb; int sum()return a+b; ; void main() a x,y(3,4); cout<<x.sum()<<' '<<y.sum()<<endl; 運行結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. sum=152. max=833. 684. 135. 0 7 /每個數(shù)據(jù)3分三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> #include<stdlib.h> int sd(int a, int

16、 b, char op) switch(op) case '+': return a+b; case '-': return a-b; default: cout<<"操作符op出錯,退出運行!"exit(1); void main() int x=20, y=6; cout<<sd(x,y,'+')<<' '<<sd(x,y,'-')<<endl; 運行結果: 2. #include<iostream.h> #includ

17、e<string.h> void main() char* a5="student","worker","cadre","soldier","apen" char *p1; p1=a0; for(int i=1;i<5;i+) if(strcmp(ai, p1)>0) p1=ai; cout<<p1<<endl; 運行結果: 3. #include<iostream.h> int wf(int x, int y) x=x+y;x=13;

18、 y=x+y;y=13+5=18; return x+y; void main() cout<<wf(8,5)<<endl; 運行結果: 4. #include<iomanip.h> const int n=9; void main() int an=2,4,6,8,10,12,14,16,18; int s=0; for(int i=0; i<n; i+) if(i%3=0) s+=ai; cout<<”s=”<<s<<endl; 運行結果: 5. #include<iomanip.h> void ma

19、in() int* d=new int5; int i; for(i=0;i<5;i+) di=2*i+1; cout<<di<<' ' cout<<endl; deleted; 運行結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. 26 14 /每個數(shù)據(jù)3分2. worker3. 314. 245. 1 3 5 7 9 /每個數(shù)據(jù)1分,全對給6分三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> void main() int n=5, sum

20、=0; while(n) sum+=n; n-; cout<<”sum=”<<sum<<endl; 運行結果: 2. #include<iostream.h> const int n=6; void main() int an=76,83,54,62,40,65; int c1, c2; c1=c2=a0; for(int i=1;i<n;i+) if(ai>c1) c1=ai; else if(ai<c2) c2=ai; cout<<c1<< <<c2<<endl; 運行結果:

21、3. #include<iomanip.h> void main() int a8=4,8,15,16,20,30,48,62; int *p=a; do cout<<*p<<' ' p+=3; while(p<a+8); cout<<endl; 運行結果: 4.#include<iomanip.h> int lf(int x, int y) x=x+y; y=x+y; return x+y; void main() int x=5, y=8; cout<<lf(x,y)<< <&l

22、t;lf(10,6)<<endl; 運行結果: 5. #include<iostream.h> class a int a,b; public: a() a=b=0; a(int aa, int bb) a=aa; b=bb; cout<<a<< <<b<<endl; ; void main() a x,y(2,3); 運行結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. sum=152. 83 40 /每個數(shù)據(jù)3分3. 4 16 48 /每個數(shù)據(jù)2分4. 34 38 /每個數(shù)據(jù)3分5. 2 3 /每

23、個數(shù)據(jù)3分三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> void sb(char ch) switch(ch) case 'a': case 'a': cout<<"優(yōu)!"<< ; break; case 'b': case 'b': cout<<"良!"<< ; break; case 'c': case 'c': cout<&l

24、t;"通過!"<< ; break; default: cout<<"不通過!"break; void main() sb(a); sb(c); cout<<endl; 運行結果: 2. #include<iostream.h> void main() int a6=36,25,48,14,55,40; int x=a0; for(int i=1;i<6;i+) if(ai>x) x=ai; cout<<”x=”<<x<<endl; 運行結果: 3. #inc

25、lude<iomanip.h> void main() int a6=32,53,27,19,12,45; for(int *p=a; p<a+6; p+) if(*p%3=0) cout<<*p<< ; cout<<endl; 運行結果: 4. #include<iomanip.h> int* lg(int m) int* a=new int(m+5); return a; void main() int n1=12; int *b=lg(n1); cout<<*b<<endl; delete b; 運

26、行結果: 5. #include<iostream.h> #include<string.h> struct worker char name15; int age; float pay; ; void main() worker x; strcpy(, "weirong"); x.age=45; x.pay=3275; cout<<<<' '<<x.age<<' '<<x.pay<<endl; 運行結果:三、寫出下列每個程

27、序運行后的輸出結果(每小題6分,共30分)1. 優(yōu)! 通過! /每個數(shù)據(jù)占3分2. x=553. 27 12 45 /每個數(shù)據(jù)占2分4. 175. weirong 45 3275三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> void main() int n=4,y=1; while(n-) y*=3; cout<<"y="<<y<<endl; 運行結果: 2. #include<iostream.h> void main() int a8=2,8,1

28、0,5,12,7,9,20; int c=0, i=0; while(i<8) if(ai>10) c+; i+; cout<<"c="<<c<<endl; 運行結果:c=2 3. #include<iomanip.h> void main() int a5=3,6,9,12,8; for(int *p=a; p<a+5; p+) if(*p>8) cout<<*p<<' ' 運行結果:9 12 4. #include<iomanip.h> int l

29、a(int a, int n) int s=0; for(int i=0;i<n;i+) s+=ai; return s; void main() int a5=5,2,8,6,4; int b=la(a,5); cout<<"b="<<b<<endl; 運行結果:b=25 5. #include<iomanip.h> struct ab char aa15; int bb; ; void main() ab a4="apple",25,"peach",40,"pear&

30、quot;,36,"tomato",62; for(int i=0;i<4;i+) if(ai.bb<40) cout<<ai.aa<<' ' cout<<endl; 運行結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. y=812. c=23. 9 124. b=255. apple pear三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h>void main()int n=4,y=1;while(n-) y*=3;c

31、out<<"y="<<y<<endl; 運行結果:y=81 2. #include<iostream.h>void main()int a8=2,8,10,5,12,7,9,20;int c=0,i=0;while(i<8)if(ai<10) c+;i+;cout<<"c="<<c<<endl; 運行結果:c=5 3.#include<iostream.h>void main()int a5=3,6,9,12,8;for(int *p=a;i<

32、;a+5;p+)if(*p>10) cout<<*p<<endl; 運行結果:12 4. #include<iomanip.h>int la(int a,int n)int s=0;for(int i=0;i<n;i+)s+=ai;return s;void main()int a5=5,2,8,6,4;int b=la(a,5);cout<<"b="<<b<<endl; 運行結果:b=25 5. #include<iomanip.h>struct abchar a15;int

33、bb;void main()ab a4="apple",25,"peach",40,"pear",36,"tomato",62;for(int i=0;i<4;i+)if(ai.bb>=40) cout<<ai.aa<<' 'cout<<endl; 運行結果:peach tomato三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. y=812. c=53. 124. b=255. pear tomato三、寫出下列每個程序運行后的輸出結

34、果(每小題6分,共30分) 1. #include<iostream.h> void main() int n=5, sum=0; while(n) sum+=n*n; n-; cout<<"sum="<<sum<<endl; 運行結果: 2. #include<iostream.h> const int n=6; void main() int an=76,83,54,62,40,65; int c1=0; for(int i=0;i<n;i+) if(ai>=60) c1+; cout<<

35、;"c1="<<c1<<endl; 運行結果: 3. #include<iomanip.h> void main() int a8=4,8,15,16,20,30,48,62; int *p=a,s=0; while(p<a+8) s+=*p; p+=3; cout<<s<<endl; 運行結果: 4. #include<iostream.h> int a=10, b=15, c; void main() c=a+b; int b=a+20; c+=a+b; cout<<c<&l

36、t;endl; 輸出結果: 5. #include<iostream.h> void ff(int a, int n) int i,x; for(i=0; i<n/2; i+) x=ai; ai=an-1-i; an-1-i=x; void main() int a8=6,19,4,12,20,5,18,25; ff(a,8); cout<<a0<<','<<a1<<endl; 輸出結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. sum=552. 4 3. 68 4. 655. 25,18

37、三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> void main() int n=5, sum=0; while(n) sum+=n; n-; cout<<”sum=”<<sum<<endl; 運行結果: 2. #include<iostream.h> const int n=6; void main() int an=76,83,54,62,40,65; int c1, c2; c1=c2=a0; for(int i=1;i<n;i+) if(ai>c1)

38、c1=ai; else if(ai<c2) c2=ai; cout<<c1<<' '<<c2<<endl; 運行結果: 3. #include<iomanip.h> void main() int a8=4,8,15,16,20,30,48,62; int *p=a; while(p<a+8) cout<<*p<<' ' p+=3; cout<<endl; 運行結果: 4.#include<iomanip.h> int lf(int x, in

39、t y) x=x+y; y=x+y; return x+y; void main() int x=5, y=8; cout<<lf(1,2)<<' '<<lf(3,4)<<endl; 運行結果: 5. #include<iostream.h> class a int a,b; public: a() a=b=0; a(int aa, int bb) a=aa; b=bb; cout<<a<<' '<<b<<endl; ; void main() a x,y

40、(3,4); 運行結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. sum=152. 83 40 /每個數(shù)據(jù)3分3. 4 16 48 /每個數(shù)據(jù)2分4. 8 18 /每個數(shù)據(jù)3分5. 3 4 /每個數(shù)據(jù)3分三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h> void main() int s=0; for(int i=1;i<=8;i+=2) s+=i*i; cout<<"s="<<s<<endl; 輸出結果: 2. #include<

41、iostream.h> void main() int i=1,s=0; while(s<15) s+=i+; cout<<i<<','<<s<<endl; 輸出結果: 3. #include<iostream.h> void main() int a8=36,25,48,14,55,20,47,82; int c1=0, c2=0; for(int i=0; i<8; i+) if(ai<50) c1+; else c2+; cout<<c1<<' '&

42、lt;<c2<<endl; 輸出結果: 4. #include<iomanip.h> int lb(int *a, int n) int p=1; for(int i=0;i<n;i+) p*=*a; a+; return p; void main() int a5=1,2,3,4,3; cout<<lb(a,5)<<endl; 輸出結果: 5. #include<iostream.h> struct worker char name15; /姓名 int age; /年齡 float pay; /工資 ; void ma

43、in() worker x="wangfong",46,1640; worker y, *p; y=x; p=&x; cout<<y.age+10<<' '<<p->pay*2<<endl; 輸出結果:三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分)1. s=842. 6,15 /每個數(shù)據(jù)3分3. 6 2 /每個數(shù)據(jù)3分4. 72 /6分5. 56 3280 /每個數(shù)據(jù)3分三、寫出下列每個程序運行后的輸出結果(每小題6分,共30分) 1. #include<iostream.h&

44、gt; void main() int s1=0, s2=1; for(int i=1; i<=6; i+) s1+=i; s2*=i; cout<<s1<<','<<s2<<endl; 輸出結果: 2. #include<iostream.h> void main() int a10=68,79,86,65,46,94,37,78,60,53; int c=0; for(int i=0;i<10;i+) if(ai>=60) c+; cout<<”c=”<<c<<endl; 輸出結果: 3. #include<iostream.h> void main() int a34=1,2,7,8,5,6,11,15,9,20,3,4; int m=a00; for(int i=0;i<3;i+) for(int j=0;j<4;j+) if(aij>m) m=aij; cout<<m<<endl

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論