湖南省歷界對口高考C語言真題(答案)_第1頁
湖南省歷界對口高考C語言真題(答案)_第2頁
湖南省歷界對口高考C語言真題(答案)_第3頁
湖南省歷界對口高考C語言真題(答案)_第4頁
湖南省歷界對口高考C語言真題(答案)_第5頁
已閱讀5頁,還剩31頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)

文檔簡介

1、歷界高考C語言真題2007年真題一、程序分析題1、#include #*eef241-2main( ) int x=3; do printf(“%d”,x-=2); while(!(-x);2、#include main( ) int x=4,y=8,z; z=x2|y; printf(“%d”,z);3、#include main( ) char x=E,y=e; printf(“%c”,x+32); printf(“%c”,(x-,y+); printf(“%cn”,x=y?x+=32:(y-=32);4、#include main( ) int t=2; while(t5) switch

2、(t%2) case 0: t+;printf(“#”);break; case 1: t+=2;printf(“*”); default:printf(“n”);5、#include main( ) char str150=”Beijing 2008”,*q=str1; char str250=”O(jiān)ne world One Dream!”,*p=str2; while(*p!=0) p+;One world One Dream!Beijing 2008 while(*q!=0) *p+=*q+; *p=0; printf(“%s”,str2); 6 #include #includemain

3、( )gfedcba char s=”abcdefg”,t; int i=0,j=strlen(s)-1; while(ij) t=si,si=sj,aj=t;i+,j-;puts(s); 二、程序填空題1、下面程序的功能是求1000以內(nèi)的完數(shù)。完數(shù)是指一個數(shù)的子因子之和等于這個數(shù)本身。 #include main( ) int i,j,sum;for(i=1; i1000 ;i+) sum=0; for(j=1;ji;j+) if(i%j=0) sum+=j; if( sum=i ) printf(“%dn”,i); 2、以下程序是統(tǒng)計一維數(shù)組arr中小于平均值的元素個數(shù)。 #include

4、 #define N 7 int fun(int s,float aver) int i,count=0;for(i=0;iN;i+) if( siaver ) count+;return count;main( ) int i,arrN=87,34,5,78,90,66,88; float aver=0; for(i=0;iN;i+) aver+=arri;aver=aver/N;printf(“統(tǒng)計結(jié)果為:%d”, fun(arr,aver );三、程序改錯題,不得增行或刪行。1、下面的程序是求,在函數(shù)fun()中存在兩處錯誤,請標(biāo)記并改正。 #include long fun(int x

5、) int m,n,t; long sum; long sum=1; for(m=1;m=x;m+) t=1; for(n=1;n=m;n+) t=m*n; t*=n; sum+=t; return sum; main( ) int num; scanf(“%d”,&num); printf(“sum=%ldn”,fun(num);2、以下程序的功能是:從字符串str中,刪除所有字母c,不區(qū)分大小寫。如輸入字符串”abcCdefcfCg”,刪除后的字符串為”abdefg”。程序有兩錯誤,請標(biāo)記并改正。#includemain( ) char str81; int i=0,j=0;gets(st

6、r);while(stri!=0) if(stri!=c|stri!=C) if(stri!=c&stri!=C) strj=stri; strj+=stri; i+;strj=0;printf(“%s”,str);3、以下程序從一個二進制文件中讀出結(jié)構(gòu)體數(shù)據(jù),并將結(jié)構(gòu)體數(shù)據(jù)輸出在屏幕上。程序中有三處錯誤,請標(biāo)記并改正。#includestruct student char name10; float score;stu;main( ) file *f; FILE *f; if(f=fopen(“a.dat”,”r”)=NULL) printf(“cannot open outfilen”);

7、 exit(0); while(feof(f) while(!feof(f) fread(stu,sizeof(struct student),1,f); fread(&stu,sizeof(struct student),1,f); printf(“%s,%.2fn”,,stu.score);fclose(f);四、程序設(shè)計題1、已知一個數(shù)列從1項開始的前6項為:0,0,1,1,2,4,以后的各項都是其相鄰的前3項之和,計算并輸出該數(shù)列前20項之和。2、寫一函數(shù)sort(int x ,int n)實現(xiàn)選擇法排序 (從小到大)。 2008年真題一、程序分析題1、#include

8、 21229.18,10main( ) char a=55; a=a&055; printf(“%x,%o”,a,a);2、#include #define test(x,y) x+y main( ) float c;c=2*test(3.2,5.4)/2;printf(“6.1f”,c);3、#include void fun( ) int x=1;static int y=1;printf(“%d%d”,+x,y+); main( ) int i;for(i=0;i2;i+) fun( );4、#include main( )3403 int a=12,b=0,n=0;do b+=2;a-

9、=2+b; n+; while(a=0);printf(“%d”,n); 5、#include main( ) int n=132,i=1,j,k,b10;while(n!=0) j=n%6; bi=j; n=n/6; i+;for(k=i-1;k0;k-) printf(“%d”,bk);二、程序填空題1、任意輸入平面一點坐標(biāo)(x,y),求該點到原點(0,0)的距離。#include #include #include typedef struct NODE float x;float y; NODE;main( ) NODE *p;p= (NODE *)malloc(sizeof(NODE

10、) ;scanf(“%f,%f”,&p-x,&p-y);printf(“%5.1f”,sqrt(p-x*p-x+p-y*p-y); free(p) ; 2、下列給定程序中,函數(shù)fun( )的功能是:從N個字符串中找出最長的那個串,并將其地址作為函數(shù)值返回。 #include #include #define N 4 #define M 50 char *fun(char (*q)M) int i;char *p; p=*q ;for(i=0;iN;i+) if(strlen(p) strlen(*(q+i) ) p=*(q+i) ;return p; main( ) char strNM=“p

11、ingpong”,”basketball”,field hockey”,”softball”;char * longest; int i;longest=fun(str);printf(“The longest string:n”);puts(longest); 3、下列程序定義了33的二維數(shù)組,并在主函數(shù)中自動賦值;函數(shù)fun的功能是使二維數(shù)組的上三角元素的值全部置0。調(diào)用函數(shù)前調(diào)用函數(shù)后 1 2 3 1 0 0 2 4 6 2 4 0 3 6 9 3 6 9 #include void fun(int n,int a 3); main( ) int a33,i,j; for(i=1;i=3

12、;i+)for(j=1;j=3;j+) ai-1j-1 =i*j; fun(3,a); printf(“the result:n”); for(i=0;i3;i+) for(j=0;j3;j+) printf(“%4d”,aij); printf(“n”); void fun(int n,int a33) int i,j; for(i=0;in-1;i+) for(j=i+1; jn ;j+) aij=0; 三、程序改錯題,不得增行或刪行。1、下列程序的功能是求分?jǐn)?shù)序列:的前8項之和。程序中有2處錯誤,請標(biāo)記并改正。 #include main( ) int i,flag=1; float a

13、=144,b=89,s=0,t; for(i=1;i=8;i+) s+=a/b; s+=flag*b/(a-b); flag=-flag; t=b;a=a-b;a=t; t=b;b=a-b;a=t;printf(“%5.1f”,s); 2、下列程序的功能是采用簡單插入的排序方法,隨機產(chǎn)生10個整數(shù),按從小到大的順序排列。程序中有2處錯誤,請標(biāo)記并改正。#include #include main( ) int i,j,a11; for(i=1;i11;i+) ai=rand( ); for(i=2;i=1;j-) if(a0aj) aj-1=aj; aj+1=aj; else continue

14、; else break;aj+1=a0; for(i=1;i11;i+)printf(“%d ”,ai);四、程序設(shè)計題1、有一輛在高速公路上行駛的汽車,司機在某一時刻看到里程表顯示的數(shù)值為95859公里(95859為回文數(shù),回文數(shù)是指正讀反讀均一樣的數(shù)),7小時后,里程表上又出現(xiàn)了一個回文數(shù)。編程求出此回文數(shù)和汽車時速?(注:高速公路限速60公里以上,汽車的里程表為5位數(shù)) 2、弦數(shù)是指平方值等于某兩個正整數(shù)平方之和的正整數(shù),如:32+42=52,因此5為弦數(shù)。編程輸出10到100之內(nèi)的所有弦數(shù)及弦數(shù)的數(shù)量。2009年真題一、程序分析題1、#include48p h o5,125D,-69

15、14 main( ) struct stu char name10; int age,sex;printf(“%d”,sizeof(struct stu);2、#include main( ) int x=68; printf(“%c,%dn”,x,x);3、#include #include main( ) double x=5.14;int a=(int)floor(x);int b=(int)pow(floor(x),3);printf(“%d,%d”,a,b);4、#include main( ) char *p,*t=“compute”,”phone”,”mp3”; for(p=t+

16、2;p=t;p-) printf(“%c ”,*(*p+1)5、#include f(int arr ) int i=0;for(;arri=10;i+=2) printf(“%d ”,arri);main( ) int arr=2,4,6,8,10,12; f(arr+1); 二、程序填空題1、以下程序的功能是:從3個紅球隊、6個白球、5個藍球中任意取出8個球,且其上至少有一個白球,輸出所有可能的方案。#includemain( ) int i,j,k; printf(“nRed White Bluen”); for(i=0;i=3;i+) for( j=1 ;j=0&k=5 ) print

17、f(“%d %d %dn”,i,j,k);2、以下程序的功能是:求100以內(nèi)最大的一對孿生素數(shù)之和,孿生素數(shù)是指兩個素數(shù)之差為2。#include#includeint isPrime(int i) int j,r=0,k=sqrt(i); for(j=2;jk) r=1; return r ;main( ) int i,sum=0; for(i=100;i=5;i-) if( isPrime(i)&isPrime(i-2) ) sum=i+i-2; break ;printf(“%dn”,sum);3、以下程序的功能是:輸入某公司50名職員的工號、姓名和地址并存入名為”company.txt

18、”的磁盤文件。struct Employee int empid; char empname10; char empadd30;emp50;void save( ) FILE *fp ; int i;if(fp=fopen(“company.txt”,”wb”)=NULL) printf(“cannot open filen”); return; for(i=0;i50;i+) if(fwrite( emp+i,sizeof(struct Employee),1,fp )!=1) printf(“file write errorn”);main( ) int i; for(i=0;i50;i+

19、) scanf(“%d,%s,%s”, &empi.empid ,empi.empname, empi.empadd);save( );三、程序改錯題,不得增行或刪行。1、以下程序的功能是:從一個整數(shù)隊列中找出值最大的數(shù),若有多個則取最先得到的那一個。程序有兩處錯誤,請標(biāo)出并改正。#includeint *findmax(int a ,int n) int i,j,max; for(i=1,j=0,max=a0;imax) j=i; max=ai; return *(a+j); return a+j;main( ) int i,a50; for(i=0;i50;i+) scanf(“%d”,&

20、ai); printf(“%d”,findmax(a,50); printf(“%d”,*findmax(a,50);2、以下程序的功能是:輸入一個字符串,將該字符串中的所有字符按ASCII碼降序排序后輸出。程序有兩處錯誤,請標(biāo)出并改正。#include#includevoid fun(char t) char c; int i,j; for(i=0;istrlen(t)-1;i+)for(j=i+1;jstrlen(t)-1;j+) if(titj) c=tj; tj=ti+; tj=ti; ti=c; main( ) char s81; gets(s); printf(nBefore so

21、rting:n%s”,s); fun(s);printf(nafter sorting:n%s”,s);四、程序設(shè)計題1、某學(xué)校操場上有一些學(xué)生,老師起知道有多少人,便讓學(xué)生排隊報數(shù):按1到5報數(shù),最后一名學(xué)生的報數(shù)為1,按1到6報數(shù),最后一名學(xué)生的報數(shù)為5,按1到7報數(shù),最后一名學(xué)生的報數(shù)為4,最后再按1到11報數(shù),最后一名學(xué)生的報數(shù)為10。編寫程序求操場上共有多少學(xué)生。2、將自然數(shù)1100按順時圍成一圈,首先取出1,然后按順時針方向以步長30取數(shù),直到所有的數(shù)取完為此。編程序求最后一個取出的數(shù)?2010年真題一、單選題1、下列不是C語言合法標(biāo)識符的是 B 。A、_124 B、124abc

22、C、sum124 D、a_124pqr圖2pqr圖12、若有如圖1所示存儲結(jié)構(gòu),且變量定義為struct nodeint data;struct node *next;*p,*q,*r;若要實現(xiàn)如圖2所示的存儲結(jié)構(gòu),可選用的賦值語句是 D 。A、p=r; B、p=q-next C、p-next=q; D、p-next=q-next;二、程序分析題6.001、#include main( ) double x,y; printf(“%.2f”,(x=5,y=x+3/2); 2、#include #define CUBE(x) (x*x*x)30100,100512main( ) int n=5;

23、int s=CUBE(+n); printf(“%d”,s);3、#include void fun(int a,int *b) a=*b*2; *b=a*5; main( ) int x=10,*y; y=&x; fun(x,y); printf(“%d,%d”,x,*y);4、#include void fun(int *a) *a=*(a-1)+*(a+1); main( ) int i=0,s=0,arr5=1,3,5,7,9;fun(arr+2);for(;i5;i+) s+=arri;printf(“%d”,s); 三、程序填空題1、下列函數(shù)rtrim實現(xiàn)的是刪除字符串str尾部的

24、所有空格。 char * rtrim(char *str) int n= strlen(str)-1 ;if(n0) if(*(str+n)!= ) *(str+n+1)=0 ; break; else n- ;return str;2、某超市推行會員優(yōu)惠購物,其中VIP會員八八折,金牌會員九折,銀牌會員九三折,普通會員九六折,非會員不打折。以下程序?qū)崿F(xiàn)了超市購物的結(jié)算,其中非會員、普通會員、銀牌會員、金牌會員、VIP會員分別用0,1,2,3,4表示。#includedouble compute(int n,int grade) int amount,i; double sum,price,d

25、iscount5= 1.0,0.96,0.93,0.9,0.88 ; sum=0.0; for(i=0;in;i+) scanf(“%lf%d”,&price,&amount); /*price:商品單價,amount:商品數(shù)量*/ sum+=price*amount; return sum*discountgrade ;main( ) int n,grade;/*n:商品種數(shù),grade:會員等級*/ scanf(“%d%d”,&n,&grade); printf(“%.2lfn”, compute(n,grade) ); 3、設(shè)文件studs.dat中存放著學(xué)生的基本信息,基本信息包括學(xué)號

26、、姓名、專業(yè)等信息。下列程序的功能是:輸入要讀取的學(xué)生人數(shù),利用malloc動態(tài)分配內(nèi)存來存儲從文件中讀取的學(xué)生信息,并輸出讀取的學(xué)生的學(xué)號,姓名,專業(yè)。 # include #include struct student long int num; /*學(xué)號*/char name20; /*姓名*/char major25; /*專業(yè)*/ ; FILE *fp; main( ) struct student st,*pst;int i,num,realnum;printf(“請輸入讀取的學(xué)生人數(shù):”);scanf(“%d”,&num);pst=(struct student *)malloc

27、( num*sizeof(struct student) );if(!pst) return;fp=fopen(“studs.dat”,”rb”);if(NULL=fp) free(pst) ; return; realnum=0;printf(“%st%st%st%sn”,”number”,”number”,”name”,”major”);/*文件包含的學(xué)生人數(shù)可能少于輸入的人數(shù)*/for(i=0; i=1);for(j=i-1;j=0;j+) for(j=i-1;j=0;j-) printf(“%d”,resultj);printf(“n”);五、程序設(shè)計題1、在全國青年歌手大獎賽中,有2

28、0個評委為參賽的選手打分,分?jǐn)?shù)為1100分。選手最后得分為:去掉一個最高分和最低分后其余18個分?jǐn)?shù)的平均值。請編寫程序?qū)崿F(xiàn),輸入20個評委評分,求出選手的最后得分。2、編寫程序,輸入5行5列整數(shù)方陣,計算并輸出該方陣兩條對角線上各元素的平方和。2011年真題一、單選題1、C語言中,不合法的整型常量是 B 。A、88 B、018 C、-0xabcd D、2e52、C語言中,定義常量指針p(p的值不可變)的正確語法是 A 。A、char * const p; B、char const *p; C、const * char p; D、const char *p;2、C語言中,一個2行3列矩陣M的值如

29、圖所示,能得到M中數(shù)值5的表達式是 C 。3 8 92 5 6A、*(M+1)+1 B、*(*M+1)+1 C、*(*(M+1)+1) D、*(*M+1)+1)3、C語言中,關(guān)于函數(shù)不正確的說法有 C 。A、實參可以是常量、變量或表達式B、實參與其對應(yīng)的形參各占用獨立的存儲單元C、實參與形參的類型不一致時,以實參類型為準(zhǔn)D、函數(shù)的類型與返回值的類型不一致時,以函數(shù)的類型為準(zhǔn)二、程序分析題1、#include3 5 83b,d1,8 main( ) enum ColorRed,Blue,Green,Yellow=6,Black,Purple,Pink; printf(“%d,%d”,Blue,P

30、urple); 2、#include main( ) char a=a,b,c,d; char *p=(char *)(&a+1); printf(“%c,%c”,*(a+1),*(p-1); 3、#include int bits_count(unsigned value) int count=0; for(count=0;value!=0;value=1) if(value&1)!=0) count+; return count;main( ) printf(“%d”,bits_count(14);4、#include int *fun(int*q) static int a=2; int

31、*p=&a; a+=*q; return p;main( ) int i=1;for(;i4;i+) printf(“%4d”,*fun(&i);三、程序填空題。1、會計記賬時通常要求大整數(shù)用逗號進行分隔,下列函數(shù)實現(xiàn)將以分為單位的數(shù)字字符串轉(zhuǎn)變?yōu)橐栽獮閱挝?,具體輸出格式如下表所示。輸入輸出輸入輸出空¥0.00 12345¥123.451¥0.01123456¥1,234.5612¥0.121234567¥12,345.561234¥12.34123456789¥1,234,567.89#include #include #include char *dollars( char const*

32、src) int len,len1,i;char*dst,*resultp;if(NULL=src) return NULL;len=strlen(src);len1=len=3) int i;for(i=len-2;i0;) *dst+=*src+; if( -i%3=0 ) *dst+=,; else *dst+=0; *dst+=.; *dst+=len2?0:*src+; *dst+=len1?0:*src;*dst=0;return resultp;2、下列程序的功能是實現(xiàn)向head指向的鏈表中插入新結(jié)點s使之仍然有序。鏈表已按id值升序排序。#include#includetype

33、def struct Node int id;char *name;struct Node *next;Node;void Innode(Node *head, int id,char *str) int j=0 Node *p, *q,*s; p=head; while( p!=NULL&idp-id ) q=p; p=p-next; s=(Node*)malloc(sizeof(Node); s-id=id; s-name=str; s-next=p; q-next=s; main() /*省略創(chuàng)建鏈表head的代碼*/Innode(head,3,“Jone”); /*參數(shù)為若插入的數(shù)據(jù)*

34、/3、下列程序采用快速排序算法對任意輸入的10個整數(shù)進行排序??焖倥判蛩惴ㄊ且环N經(jīng)典的排序方法,它是冒泡排序算法的改進。該算法的主要思想是在待排序的n個數(shù)據(jù)中取第一個數(shù)據(jù)作為基準(zhǔn)值,將所有的數(shù)據(jù)分為兩組,使得第一組中各數(shù)據(jù)值均小于或等于基準(zhǔn)值,第二組中各數(shù)據(jù)值均大于基準(zhǔn)值,這便完成了第一趟排序,再分別對第一組和第二組重復(fù)上述方法,直到每組只有一個數(shù)據(jù)為止。#includevoid qusort(int s,int start,int end) int i,j;i=start; /*將每組首個元素賦給i*/j=end; /*將每組末尾元素賦給j*/s0=sstart; /*設(shè)置基準(zhǔn)值*/whil

35、e(ij) while( i=s0 ) j-; /*位置左移*/ if(ij) si+=sj /*將sj放到sj的位置上,且i自增*/ while(ij& si =s0) i+; /*位置右移*/ if(ij) sj-=si; si=s0; /*將基準(zhǔn)值放入指定位置*/if(starti) qusort(s,start,j 1); /*對分割出的部分遞歸調(diào)用函數(shù)qusort()*/if(iend) qusort(s,j+1,end); main() int a11,i; printf(“please input 10 numbers:n ”); for(i=1;i=10;i+) scanf(“

36、%d”,&ai); qusort(a,1,10); printf(“the sorted numbers:n ”); for(i=1;i=10;i+) print(“%4d”,ai);四、程序改錯題,不得刪除行或增加行。1、以下函數(shù)的功能是:在指針數(shù)組表示的字符串列表中查找特定的字符,指針數(shù)組以NULL指針結(jié)束,如果找到返回TRUE,否則返回FALSE。程序中有兩處錯誤,請標(biāo)出并改正。L1 #includeL2 #includeL3 #define TRUE 1L4 #define FALSE 0L5 int find_string(char* string,char value)L6 cha

37、r* cur_str;L7 if(*string=NULL)L8 return FALSE;L9 while(cur_str=*strings)!=NULL) while(cur_str=*strings+)!=NULL)L10 while(cur_str!= 0) while(*cur_str!= 0)L11 if(*cur_str+=value)L12 return TRUE;L13 L14 return FALSE;L15 五、程序設(shè)計題1、一串?dāng)?shù)碼是否構(gòu)成合法的信用卡號,可以通過CheckCard算法來驗證。CheckCard算法驗證的過程如下:卡號的長度必須是16位。從卡號最后一位數(shù)

38、字開始,將奇數(shù)位數(shù)字求和。從卡號最后一位數(shù)開始,將偶數(shù)位數(shù)字乘以2(如果乘積為兩位數(shù),則減9),再求和。將和所得的和值相加,當(dāng)結(jié)果能被10整除時,則校驗通過。例如,卡號是5432123456788881奇數(shù)位和等于35偶數(shù)位乘以2(乘積為兩位數(shù)的減去9)的結(jié)果:1 6 2 6 1 5 7 7,求和等于35。35+35=70可以被10整除,校驗通過。編寫函數(shù)實現(xiàn)CheckCard算法,判斷輸入的卡號是否能通過驗證,通過則顯示“成功”,否則顯示“失敗”。2、隨著信息化進程的不斷推進,數(shù)據(jù)的安全性越來越受到人們的重視,數(shù)據(jù)加密技術(shù)是保證數(shù)據(jù)安全的重要手段。編程實現(xiàn)對C盤根目錄下名為“new.dat”

39、文件的數(shù)據(jù)進行加密,加密方式是將“new.dat”文件中每個字符與字符A進行異或運算,運算后的加密數(shù)據(jù)存儲到“new.dat”文件中。2012年真題一、單選題1、以下正確的C語言自定義標(biāo)識符是 C 。A、int B、a.3 C、_7c D、5d_2、已知i=3,執(zhí)行j=i+后,i和j的值分別為 B 。A、4 2 B、 4 3 C、3 3 D、3 23、C語言中,以下語句能跳過循環(huán)體中未執(zhí)行的語句,接著執(zhí)行本循環(huán)下一次迭代的語句是 D 。A、空語句 B、break語句 C、return 語句 D、continue語句二、填空題1、C語言中,文件操作fopen函數(shù)的原型為FILE *fopen(c

40、har *filename,char *mode);用于打開一個指定文件,若成功則返回一個與之關(guān)聯(lián)的流,否則返回 NULL ;代碼片段FILE *fp=fopen(“c:test.dat”,”a”)的含義是以 追加 的方式打開路徑”c:test.dat”對應(yīng)的文件,當(dāng)訪問的文件是二進制文件時,還需要在字符串”a”后增加一個字符 b ,以上代碼片段對應(yīng)的關(guān)閉文件的C語言代碼是 fclose(fp); 。 三、綜合應(yīng)用題1、30人參觀博物館共花50美元,其中成年男子門票為3美元/人,成年女子2美元/人,小孩1美元/人。編程輸出成年男子、成年女子和小孩人數(shù)的所有組合。題目分析如下:設(shè)x,y,z分別代

41、表成年男子、成年女子和小孩人數(shù)??傻靡韵路匠蹋簒+y+z=30 3x+2y+z=50 用程序求此不定方程的非負(fù)整數(shù)解,可先通過-式得:2x+y=20 由式可知,x變化范圍是 0,10 。根據(jù)以上分析編寫程序如下:#includemain( ) int x,y,z; printf(“Men Women Childrenn”); for(x=0; x=10 ; x+) y=20-2*x ; z=30-x-y ; if(3*x+2*y+z=50) printf(“%d %d %dn”,x,y,z);四、程序分析題1、#include main( ) int a=3,b=4; a%=b+=a+=a+b; printf(“%d,%d”,a,b);2、#include main( ) int x=2,y=7,z=5; switch(x2) case 1: switch(y0) case 1:printf(“1”);break; case 2:printf(“2”);break; case 0:10,1446 switch(z=5) case 0:printf(“3”);break; case 1:printf(“4”);break;

溫馨提示

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

評論

0/150

提交評論