📜  C程序将两个浮点数相乘

📅  最后修改于: 2020-10-04 11:45:54             🧑  作者: Mango

在此示例中,计算用户输入的两个浮点数的乘积并将其打印在屏幕上。

程序将两个数字相乘
#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

在该程序中,要求用户输入两个数字,分别存储在变量ab中

printf("Enter two numbers: ");
scanf("%lf %lf", &a, &b); 

然后,评估ab的乘积,并将结果存储在product中

product = a * b;

最后,使用printf( )产品显示在屏幕上。

printf("Product = %.2lf", product);

请注意,使用%.2lf转换字符将结果四舍五入到小数点后第二位。