2、.h>intmain(){charc;intletters=0,space=0,digit=0,other=0;printf("Pleaseinputasentence:");while((c=getchar())!=''){if(c>='a'&&c<='z'
3、
4、c>='A'&&c<='Z')letters++;elseif(c>='0'&&c<='9')digit++;elseif(c=='')space++;elseother++;}printf("letters=%dspace=%ddigit=%dother=%d",letters,s
5、pace,digit,other);return0;}②运行结果如下:在得到正确结果后,请修改程序使之能分别统计大小写字母、空格、数字和其他字符的个数。①输入程序如下:#includeintmain(){charc;intbigletters=0,smallletters=0,space=0,digit=0,other=0;printf("Pleaseinputasentence:");while((c=getchar())!=''){if(c>='A'&&c<='Z')bigletters++;elseif(c>='a'&&c<='z')
6、smallletters++;elseif(c>='0'&&c<='9')digit++;elseif(c=='')space++;elseother++;}printf("bigletters=%dsmallletters=%dspace=%ddigit=%dother=%d",bigletters,smallletters,space,digit,other);return0;}②运行结果如下:(2)输出所有的“水仙花数”,所谓“水仙花数”是指一个3位数,其各位数字立方和等于该数本身。①输入程序如下:#includeintm
7、ain(){inti,j,k,n;printf("parcissusnumbersare");for(n=100;n<1000;n++){i=n/100;j=n/10-10*i;k=n%10;if(n==i*i*i+j*j*j+k*k*k)printf("%d,",n);}printf("");return0;}②运行结果如下(1)猴子吃桃问题。猴子第1天摘下若干个桃子,当即吃了一半,还不过瘾,又多吃了一个。第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下的一半零一个。到第10天早上想再吃时,见只剩一个桃子了。求第1天共摘了多少桃子。
8、①输入程序如下:#includeintmain(){intday,x1,x2;day=9;x2=1;while(day>0){x1=(x2+1)*2;x2=x1;day--;}printf("total=%d",x1);return0;}②程序运行结果如下:在得到正确结果后,修改题目,改为猴子每天吃了前一天剩下的一半后,再吃两个。①修改程序如下:#includeintmain(){intday,x1,x2;day=9;x2=1;while(day>0){x1=(x2+2)*2;x2=x1;day--;}printf("tota
9、l=%d",x1);return0;}①运行结果如下:(1)用牛顿迭代法求方程2x3=4x2+3x-6在1.5附近的根。①输入程序如下:#include#includeintmain(){doublex1,x0,f,f1;x1=1.5;do{x0=x1;f=((2*x0-4)*x0+3)*x0-6;f1=(6*x0-8)*x0+3;x1=x0-f/f1;}while(fabs(x1-x0)>=1e-5);printf("Therootofequationis%5.2f",x1);return0;}②运行结果如下:在得到正