下面是第三次作业的成绩
希望同学们继续努力
Posted 包洪帅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三次作业相关的知识,希望对你有一定的参考价值。
1.编写程序,使用scanf()函数接收整形、实型、字符型的变量,并分行依次输出
#include<stdio.h>
main()
{
int a;
float b;
char c;
scanf("%d%f%c",&a,&b,&c);
printf("%d\\n%f\\n%c\\n",a,b,c);
}
1.编写程序,通过scanf( )函数接收两个字符型变量,并输出
#include<stdio.h>
main()
{
char ch;
ch=getchar();
putchar(ch);
}
#include<stdio.h>
main()
{
float h,v,r;
printf("输入圆柱底面半径和高,中间用空格分开");
scanf("%f,%f",&r,&h);
v=3.14*r*r*h;
printf("体积为:%.2f\\n",v);
}
#include<stdio.h>
main()
{
int a,ge,shi,bai;
printf("请输入一个三位数");
scanf("%d",&a);
ge=a%10;
shi=a/10%10;
bai=a/100;
printf("个位是%d,十位是%d,百位是%d\\n",ge,shi,bai);
}
#include<stdio.h>
main()
{
char ch;
printf("请输入一个小写字母:\\n");
scanf("%c",&ch);
if(ch>=97&&ch<=122);
ch=ch-32;
printf("其对应的大写字母:\\n");
printf("%c",ch);
}
#include<stdio.h>
main()
{
float a,b,c,d,e,f;
printf("******************************************************");
printf(" 欢迎光临\\n");
printf("请输入单价");
scanf("%f",&a);
printf("请输入数量");
scanf("%f",&b);
c=a*b;
printf("您需付的总金额%f",c);
d=(int)(c*0.8);
printf("打八折抹零后需支付%f",d);
printf("付款");
scanf("%f",&e);
f=e-d;
printf("找您%f",f);
}
下面是第三次作业的成绩
希望同学们继续努力
以上是关于第三次作业的主要内容,如果未能解决你的问题,请参考以下文章