中国石油大学C语言上机题答案.zip(11)
发布时间:2021-06-06
发布时间:2021-06-06
if(m<10)
y=0.80*m+0.2;
else if(m<20)
y=0.75*m+0.2;
else
y=0.70*m+0.2;
printf("%.2f\n",y);
}
}4.10 判断输入的字符的类型 我们将字符分为五类:大写字母、小写字母、数字、控制字符、其他字符。
编写程序,从键盘输入一个字符,输出字符所属的类型:大写字母时输出capital letters, 小写字母时输出small letters,数字是输出figures,其他字符时输出 others。
#include <stdio.h>
int main()
{
char ch;
ch=getchar();
if (ch<91&&ch>64)
{printf("capital letters\n");}
else if (ch<123&&ch>96)
{printf("small letters\n");}
else if (ch<=57&&ch>=48)
{{printf("figures\n");}}
else {printf("other\n");} return 0;} }
5.1输出一行星号
问题描述
编写程序在一行中输出 N 个星号。
输入
星号个数值N
输出
一行中N个星号
#include <stdio.h>
int main()
{
int N,i;
scanf("%d",&N);
for(i=1;i<=N;i++)
下一篇:知法守法主题班会