C 程序将两个浮点数相乘
在此示例中,将计算用户输入的两个浮点数的乘积并将其打印在屏幕上。
程序将两个数相乘#include
int main() {
double a, b, product;
printf("输入两个数字: ");
scanf("%lf %lf", &a, &b);
// 相乘
product = a * b;
//使用%.2lf显示小数点后2位的结果
printf("Product = %.2lf", product);
return 0;
}
输出结果
输入两个数字: 2.4
1.12
Product = 2.69
在这个程序中,用户被要求输入两个数字分别存储变量a和b。printf("输入两个数字: ");
scanf("%lf %lf", &a, &b);
然后求a与b的乘积,并将结果存储在product中。product = a * b;
最后,使用printf()将product显示在屏幕上。printf("Product = %.2lf", product);
请注意,结果使用%.2lf转换字符四舍五入到小数点后第二位。