资源描述:
《c语言程序设计 (何钦铭 颜晖 著) 高等教育出版社第六章 课后答案》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、练习6-3#includeintmain(){charch;scanf("%c",&ch);//请在两条星线之间填入相应的代码,将变量ch中的大写字母转换成小写字母。/*******************************************************/ch+=32;/*******************************************************/printf("%c",ch);}习题6-1#includeintmain(){intri,re
2、peat;intcount,word;charc;scanf("%d",&repeat);getchar();for(ri=1;ri<=repeat;ri++){c=getchar();//请在两条星线之间填入相应的代码,统计一行字符中的单词个数。//(要求使用循环嵌套)/********************************************************/word=0;count=0;while(c!=''){if(c=='')word=0;elseif(word==0){word=1;count++;}
3、c=getchar();}/********************************************************/printf("%d",count);}}习题6-2#includeintmain(){intri,repeat;intblank,digit,letter,other;charc;scanf("%d",&repeat);getchar();for(ri=1;ri<=repeat;ri++){c=getchar();//请在两条星线之间填入相应的代码,统计出其中的英文字母、空格
4、、数字和其他字符的个数。//(要求使用循环结构)/*********************************************************************************/blank=digit=letter=other=0;while(c!=''){if(c=='')blank++;elseif(c>='A'&&c<='Z')letter++;elseif(c>='a'&&c<='z')letter++;elseif(c>='0'&&c<='9')digit++;elseother++;c=
5、getchar();}/*********************************************************************************/printf("letter=%d,blank=%d,digit=%d,other=%d",letter,blank,digit,other);}}习题6-3#includeintmain(){intri,repeat;intop1,op2,res;charoperator1;scanf("%d",&repeat);for(ri=1
6、;ri<=repeat;ri++){scanf("%d",&op1);operator1=getchar();//请在两条星线之间填入相应的代码,输入一个算式(没有空格),遇等号"="说明输入结束,输出结果。//(要求使用循环嵌套)/***************************************************************************************/while(operator1!='='){scanf("%d",&op2);switch(operator1){case'+':re
7、s=op1+op2;break;case'-':res=op1-op2;break;case'*':res=op1*op2;break;case'/':res=op1/op2;break;default:break;}op1=res;operator1=getchar();}/***************************************************************************************/printf("%d",res);}}