實數的輸出和佔位
阿新 • • 發佈:2018-11-10
實數的輸出和佔位
Time Limit: 1000 ms Memory Limit: 65536 KiB
Problem Description
輸入一個實數,請你按如下要求輸出:
第一行按雙精度預設輸出,
第二行雙精度數輸出共佔 10 位,其中 3 位小數,右對齊,左補空格並在兩端新增星號包裹,
第三行雙精度數輸出共佔 10 位,其中 3 位小數,左對齊,右補空格並在兩端新增星號包裹。
Input
一個double範圍內的正實數 a 。
Output
共三行,按題目描述輸出。
Sample Input
123.56789
Sample Output
123.567890 * 123.568* *123.568 *
Hint
Source
行走的二叉樹
#include <iostream> #include<stdio.h> #include<string.h> #include<algorithm> using namespace std; int main() {double a; cin>>a; printf("%lf\n",a); printf("*%10.3lf*\n",a); printf("*%-10.3lf*\n",a); return 0; }