1、max = %dn,max); count = CountFail(score, 20);count = %dn,count);int FindMax(int score, int n) int max,i; max = score0; if (scorei max) max = scorei; return max;int CountFail(int score, int n) int count,i; count = 0; if (scorei 60) count +; return count; 3.一个班有6位同学,每位同学包括学号、姓名、数学、物理、计算机成绩和总分,要求输入学号、姓
2、名、数学、物理、计算机成绩,计算出每位同学的总分,并按总分降序输出。要求每位同学的信息定义成一个结构体。struct student long num ; char name10; int mt;int ph;int cm;int sum;stu6,temp;void main() int i,j; for(i=0;i6;i+) scanf(%ld%s%d%d%dstui.num, stui.name, &stui.mt, &stui.ph, &stui.cm); stui.sum=0; stui.sum= stui.mt+stui.ph+stui.cm;5; for(j=i+1;jj+) i
3、f(stuj.sumint m,i,h=0,leap=1;printf(for(m=101;ma&cAZletters+;else if(c= space+;else if(c09digit+;elseothers+;all in all:char=%d space=%d digit=%d others=%dn,letters,space,digit,others);6.编一程序,将字符串computer赋给一个字符数组,然后从第一个字母开始间隔地输出该串,请用指针完成。 void main( ) static char x =computer; char *p; for(p=x;pvoid
4、copystr(char *p1,char *p2,int m) int n=0; while(nm-1) p2+,n+; while(*p2!0 *p1=*p2;p1+;p2+; *p1=void main( ) int m; char str180,str280;Input a string: gets(str2);Input m: scanf(m); if(strlen(str2)m)Err input! else copystr(str1,str2,m);Result is:%sn,str1);8一个求从100米高度自由落下,每次落地后又反弹回原来高度的一半,再落下,求它在第10次落地
5、时共经过多少米?第10次反弹多高?编写程序求解该问题。 #include float sn=100.0,hn=sn/2;int n;for(n=2;n=10;n+)sn=sn+2*hn;/*第n次落地时共经过的米数*/hn=hn/2; /*第n次反跳高度*/the total of road is %fn,sn);the tenth is %f metern,hn);9编一程序,将2000年到3000年中的所有闰年年份输出并统计出闰年的总年数,要求每10个闰年放在一行输出。 main( ) int year=0,number=0; for(year=2000;year3000;year+) i
6、f(year%4=0&year%100!=0)|year%400=0) printf(%6d,year); number+; if(number%10=0) printf(ntotal number of leap year is %d,number);10 试编一程序完成以下功能:定义一个含有30个整型元素的数组,按顺序分别赋予从2开始的偶数;然后按顺序每5个数求出一个平均值,放在另一数组中并输出。 int a30,b6, sum=0,k,j=0; for(k=0;karrayi) min= arrayi; k=i; arrayk=array0; array0=min; printf(“nA
7、fter exchange: printf(“nk=%dnmin=%dn”,k,min);12. 试编程完成如下功能:输入一个不多于4位的整数,求出它是几位数,并逆序输出各位数字。#include0) t=x%10,t); x=x/10; n+;n=%dn,n);13.请编写一个函数fun(),它的功能是:比较两个字符串的长度,(不得调用C语言提供的求字符串长度的函数),函数返回较短的字符串。若两个字符串长度相等,则返回第1个字符串。例如,输入nanjing nanchang (为回车键),函数将返回nanjing。char *fun(char *s, char *t)si!= i+); /*
8、求字符串的长度*/tj!j+); if(issi s=s/100; *t=s%10*s1+*t; s1=s1*10; long s, t;nPlease enter s:%lds); fun(s,&t);The result is: %ldn 17. 请编写一个函数fun(),该函数的功能是:统计字符串str中的单词个数,结果由变量num传回。每个单词之间都由空格隔开,并且字符串str开始不存在空格。str是全部由小写字母字符和空格字符组成的字符串 例如:str=“how do you do”,结果为:num=4。#define N 80void fun(char *s,int *num) i
9、nt i,n=0;*num; if(sisi)|(si sj+=si;sj= char item80;nEnter a string: gets(item);nnThe string is:%sn,item); fun(item);nnThe string of changing is :20. 编一程序:从键盘输入一个字符串并保存在字符str1中,把字符串str1中下标为偶数的字符保存在字符串str2中并输出。例如,当str1=“cdefghij”,则str2=“cegi”。 char *p1=str1,*p2=str2; int i=0,j=0; scanf(%s,str1);*the origial string*n while(*(p1+j) printf(%c ,*(p1+j); j+;j;i+=2) *p2+=*(str1+i); *p2=nThe new string is: 学习委员 2010年6月21日星期一
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1