printf("The input number is:%ld\n",iNumber);
printf("The inverse number is:");
invertLongInt(iNumber);
}
void invertLongInt(long x)
{
if(x>=0&&x<=9)
printf("%d\n",x);
else
{
printf("%d",x%10);
invertLongInt(x/10);
}
}
5.从键盘上输入假设干学生的一门课成绩,统计并输出最高成绩和最低成绩及相应的序号,
当输入负数时完毕输入。
6.从键盘上输入假设干学生的一门课成绩,计算出平均分,当输入负数时完毕输入。将结果
输出。
7.求 1!+2!+3!+……+20!,将结果输出。
#include<stdio.h>
void main()
{
float s=0,t=1;
int n;
for(n=1;n<=20;n++)
{
t=t*n;
s=s+t;
}
printf("1!+2!+3!+……+20!=%e\n",s);
}
8.打印以以下图案: *
***
*****
*******
#include<stdio.h>
void main()
{
int i,j;
printf("The picture is:\n");
static char picture[4][7]={{' ',' ',' ','*'},
{' ',' ','*','*','*'},{' ',' *','*','*','*','*'},{'*','*','*','*','*','*','*'}};
for(i=0;i<=3;i++)
评论0
最新资源