假設本練習中的四個變數分別為
double a=3.456789;
double b=34.56789;
double c=345.6789;
double d=3456.789;
試運用 printf() 函式完成如下之執行畫面:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- double a=3.456789;
- double b=34.56789;
- double c=345.6789;
- double d=3456.789;
- printf("%.1f\n",c); //四捨五入至小數點後1位
- printf("%.0f\n",d); //四捨五入至整數位
- printf("%9.2f\n",a); //指定總長度為9個字元/四捨五入至小數點後2位
- printf("%9.2f\n",b);
- printf("%09.2f\n",c); //指定總長度為9個字元/不足的部分以0補上/四捨五入至小數點後2位
- printf("%09.2f\n",d);
- system("pause");
- return 0;
- }
複製代碼 |