L1-051
输入格式:
输入在一行中给出商品的原价(不超过1万元的正整数)和折扣(为[1, 9]区间内的整数),其间以空格分隔。
输出格式:
在一行中输出商品的折扣价,保留小数点后 2 位。
主要思路
a折即 原价*a*0.1
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
double x;
scanf("%d %d",&a,&b);
x=a*b*0.1;
printf("%.2f",x);
return 0;
}
L1-052
输出格式:
在第一行中输出:“2018”;第二行中输出:“wo3 men2 yao4 ying2 !”。
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("2018\n");
printf("wo3 men2 yao4 ying2 !");
return 0;
}
L1-057
输出格式:
在一行中按照样例输出,以惊叹号结尾。
#include