以前上課的時(shí)候不想做,現(xiàn)在很想補(bǔ)下,很后悔沒好好學(xué)習(xí)呢~希望樓主好好努力
在大石橋等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì) 網(wǎng)站設(shè)計(jì)制作定制網(wǎng)站設(shè)計(jì),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷推廣,外貿(mào)營銷網(wǎng)站建設(shè),大石橋網(wǎng)站建設(shè)費(fèi)用合理。
第4道1):
#includestdio.h
void main(void)
{
int i,j,a[80],max,max_i;
printf("please input 10 num!\n");
for(i=0;i10;i++)
scanf("%d",a[i]);
printf("the 10 num is:\n");
for(i=0;i10;i++)
printf("%d\t",a[i]);
for(max=a[0],i=0;i10;i++)
{
if(maxa[i])
{
max=a[i];
max_i=i;
}
}
printf("the max num is:a[%d]=%d\n",max_i+1,max);
getch();
}
2)道:
#includestdio.h
void main(void)
{
int a[3][2],i,j,sum[3];
for(i=0;i3;i++)
{
printf("please input the score of the student %d\n",i+1);
scanf("%d%d",a[i][0],a[i][1]);
sum[i]=a[i][0]+a[i][1];
}
for(i=0;i3;i++)
{
printf("the score of the student %d is:%d\t%d\n",i+1,a[i][0],a[i][1]);
printf("the sum score of the student %d is:%d\n",i+1,sum[i]);
}
getch();
}
3)道:
#includestdio.h
#includestring.h
main()
{
int i;
char string1[80],string2[80];
printf("please input the string 1\n");
scanf("%s",string1);
printf("please input the string 2\n");
scanf("%s",string2);
if(strcmp(string1,string2)==0)
printf("the 2 string is the same\n");
else
printf("the 2 string is different\n");
getch();
}
第5道:
#includestdio.h
main()
{
float c,f;
printf("please input the F\n");
scanf("%f",f);
c=(f-32)*5/9;
printf("the convert result is:%.2f\n",c);
getch();
}
小問:
float convert(float a)
{
float b;
b=(a-32)*5/9;
return b;
}
main()
{
float c,f;
printf("please input the F\n");
scanf("%f",f);
c=convert(f);
printf("the convert result is %.2f\n",c);
getch();
}
第6道:
#includestdio.h
main()
{
int x,y,*p1,*p2;
printf("please input the 2 nums;\n");
scanf("%d%d",x,y);
swap1(x,y);
printf("the swap1 result is:%d\t%d\n",x,y);
p1=x;
p2=y;
swap2(p1,p2);
printf("the swap2 result is:%d\t%d\n",*p1,*p2);
getch();
}
swap1(int x,int y)
{
int temp;
temp=x;
x=y;
y=temp;
}
swap2(int *p1,int *p2)
{
int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
}
6.2)
#include stdio.h
void main()
{
char s[80];/*定義一個(gè)數(shù)組*/
char c;
printf("which style you want to:\n");/*是\不是|*/
printf("capital ( c ) or uncapital(a):");
c=getchar();
if(c=='c')/*是==不是=*/
strcpy(s,"COMPUTER");
else
strcpy(s,"computer");
puts(s);
getch();
}
第七道
struct student
{
char num[8];
char name[80];
float score;
}stu[4];
main()
{
int i,max,max_i;
for(i=0;i4;i++)
{
printf("input the num of student %d\n",i+1);
scanf("%s",stu[i].num);
printf("input the name of student %d\n",i+1);
scanf("%s",stu[i].name);
printf("input the score of student %d\n",i+1);
scanf("%f",stu[i].score);
}
for(max=stu[0].score,i=0;i4;i++)
{
if(maxstu[i].score)
{
max=stu[i].score;
max_i=i;
}
}
printf("the highest score student is student%d\n",max_i+1);
printf("%s\t%s\t%.2f\n",stu[max_i].num,stu[max_i].name,stu[max_i].score);
getch();
}
第八道:
Java的行不,C++的不記得了。
public class Circle
{
private static double PI=3.14
private double radius;
public Circle(double radius)
{
this.radius=radius;
}
public double Area()
{
return PI*radius*radius;
}
public double Perimeter()
{
return 2*PI*radius;
}
}
#include?stdio.h
int?main?()
{
int?ad(int);
int?n;
printf("請輸入一個(gè)測試數(shù):");
while(scanf("%d",n)==1)
if(ad(n))
printf("\t?%d?是??素?cái)?shù).\n",n);
else?
printf("\t?%d?不是素?cái)?shù).\n",n);
return?0;
}
int?ad(int?n)
{
int?flag=1,i;
for?(i=2;i=n/2??flag==1;i++)??//?這里?i=n/2就好了
if(n%i==0)
flag=0;
return?(flag);
}
代碼有點(diǎn)小問題,參看上面的注釋
涉及到兩個(gè)概念:遞歸調(diào)用、變量作用域
fun函數(shù)中用的w是全局的,值為3
遞歸調(diào)用返回值為5*4*3*2*1*3=360
主函數(shù)定義了w,覆蓋了全區(qū)的,值為10,所以輸出360*10=3600
第一題:
有3個(gè)錯(cuò)。
1.strupr(name[i]) 改為:strcpy(name[i],strupr(name[i]));
2.if(name[i] name[j])改為:if(strcmp(name[i],name[j])0)
3.strcpy(name[i],str );改為:strcpy(str,name[i]);
第二題:
(1)s[i] != '\0'
(2){ j ++;}else
memcpy(s[i],s[i]+1,strlen(s)-i-1)
第三題:
s[i] = '9' s[i] = '0'
分享名稱:c語言習(xí)題實(shí)驗(yàn)七函數(shù)答案 c語言實(shí)驗(yàn)六函數(shù)答案
轉(zhuǎn)載源于:http://jinyejixie.com/article22/dochejc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、商城網(wǎng)站、、網(wǎng)站設(shè)計(jì)公司、網(wǎng)站維護(hù)、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)