程序将两个数字相乘
#include
int main() {
double a, b, product;
printf("Enter two numbers: ");
scanf("%lf %lf", &a, &b);
// Calculating product
product = a * b;
// Result up to 2 decimal point is displayed using %.2lf
printf("Product = %.2lf", product);
return 0;
}
输出
Enter two numbers: 2.4
1.12
Product = 2.69
在该程序中,要求用户输入两个数字,分别存储在变量a和b中 。
printf("Enter two numbers: ");
scanf("%lf %lf", &a, &b);
然后,评估a和b的乘积,并将结果存储在product中 。
product = a * b;
最后,使用printf(
)
将产品显示在屏幕上。
printf("Product = %.2lf", product);
请注意,使用%.2lf
转换字符将结果四舍五入到小数点后第二位。