在此示例中,將計算用戶輸入的兩個浮點數(shù)的乘積并將其打印在屏幕上。
#include <stdio.h> int main() { double a, b, product; printf("輸入兩個數(shù)字: "); scanf("%lf %lf", &a, &b); // 相乘 product = a * b; //使用%.2lf顯示小數(shù)點后2位的結果 printf("Product = %.2lf", product); return 0; }
輸出結果
輸入兩個數(shù)字: 2.4 1.12 Product = 2.69
在這個程序中,用戶被要求輸入兩個數(shù)字分別存儲變量a和b。
printf("輸入兩個數(shù)字: "); scanf("%lf %lf", &a, &b);
然后求a與b的乘積,并將結果存儲在product中。
product = a * b;
最后,使用printf()將product顯示在屏幕上。
printf("Product = %.2lf", product);
請注意,結果使用%.2lf轉換字符四舍五入到小數(shù)點后第二位。