【程序21】
题目:一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在第10次落地时,共经过多少米?第10次反弹多高?
1.程序分析:见下面注释
2.程序源代码:
#include
void main()
{
float sn=100.0,hn=sn/2;
int n;
for(n=2;n<=10;n++)
{
sn=sn+2*hn;/*第n次落地时共经过的米数*/
hn=hn/2; /*第n次反跳高度*/
}
printf("the total of road is %f/n",sn);
printf("the tenth is %f meter/n",hn);
}
-----------------------------------------------------------------------------
【程序22】
题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。
1.程序分析:采取逆向思维的方法,从后往前推断。
2.程序源代码:
#include
void main()
{
int day,x1,x2;
day=9;
x1=1;
for(;day>0;day--)x1=(x1+1)*2;/*第一天的桃子数是第2天桃子数加1后的2倍*/
printf("the total is %d/n",x1);
}
-----------------------------------------------------------------------------
【程序23】
题目:打印出如下图案(菱形)
*
***
******
********
******
***
*
1.程序分析:先把图形分成两部分来看待,前四行一个规律,后三行一个规律,利用双重 for循环,第一层控制行,第二层控制列。
2.程序源代码:
#include
void main()
{
int i,j,k;
for(i=0;i<=3;i++)
{
for(j=0;j<=2-i;j++)
printf(" ");
for(k=0;k<=2*i;k++)
printf("*");
printf("/n");
}
for(i=0;i<=2;i++)
{
for(j=0;j<=i;j++)
printf(" ");
for(k=0;k<=4-2*i;k++)
printf("*");
printf("/n");
}
}
-----------------------------------------------------------------------------
【程序24】
题目:有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。
1.程序分析:请抓住分子与分母的变化规律。 后一项分子是前一项分子分母之和,分母为前一项分子。
2.程序源代码:
#include
void main()
{
int n,t,number=20;
float a=2,b=1,s=0;
for(n=1;n<=number;n++)
{
s=s+a/b;
t=a;a=a+b;b=t;/*这部分是程序的关键,请读者猜猜t的作用*/
}
printf("sum is %9.6f/n",s);
}
-----------------------------------------------------------------------------
【程序25】
题目:求1+2!+3!+...+20!的和
1.程序分析:此程序只是把累加变成了累乘。
2.程序源代码:
#include
void main()
{
float n,s=0,t=1;
for(n=1;n<=20;n++)
{
t*=n;//累乘的性质
s+=t;
}
printf("1+2!+3!...+20!=%e/n",s);
}
-----------------------------------------------------------------------------
【程序26】
题目:练习函数调用
1. 程序分析:
2.程序源代码:
#include
void hello_world(void)
{
printf("Hello, world!/n");
}
void three_hellos(void)
{
int counter;
for (counter = 1; counter <= 3; counter++)
hello_world();/*调用此函数*/
}
void main(void)
{
three_hellos();/*调用此函数*/
}
-----------------------------------------------------------------------------
【程序27】
输入一行字母,计算有几个单词,单词之间用空格隔开
1.程序分析:如果有两个空格要考虑
2.程序源代码:
#include
void main()
{
char str[30];
gets(str);
char ch;
int i=0;
int word=1;
int leap=0;
while((ch=str[i])!='/0')
{
if(ch==' ' )
{if(leap==0){word++;leap=1;}}
else leap=0;
i++;
}
printf("%d",word);
}
-----------------------------------------------------------------------------
【程序28】
把100—200之间不能被3整除的数输出
1. 程序分析:continue用法:结束本次循环
2. 程序源代码:
#include
void main ()
{
int n;
for(n=100;n<=200;n++)
{
if(n%3==0)continue;
Printf(“%d”,n);
}
}
-----------------------------------------------------------------------------
【程序29】
1-100累加和用goto语句
1程序分析:goto loop;loop:
2程序源代码:
#include
void main()
{
int I,sum=0;
i=1;
loop: if(i<=100)
{
sum=sum+I;
I++
goto loop;
}
Printf(“%d”,sum);
}
-----------------------------------------------------------------------------
【程序30】
题目:putchar(),getchar()用法。
1.程序分析:与puts(),gets()相区别gets(str);puts(str);
2程序源代码:
#include
void main()
{char c;
c=getchar();
putchar();
}