recite和tip输出对齐C ++,输出格式

问题描述 投票:0回答:2

我正在为我的编程类编写这段代码,我还有其他一切工作,但是我的输出格式化对我来说并不奏效。

#include <iostream>
#include <iomanip>
#include <ios>

    using namespace std;

    int main()
    {
        double tip_fifteen;
        double tip_twenty;
        double tax;
        double bill;
        char dollars = '$';
        float meal_cost;

        cout << "Enter the meal cost: ";
        cin >> meal_cost;
        tip_twenty = meal_cost * .20;
        tip_fifteen = meal_cost * .15;
        tax = meal_cost * 0.0975;
        cout << "******************************************" << endl;

        //beginning outputs
        int digits;
        digits = meal_cost * 100 / 100;
        cout << setw(10) << left << "Meal Cost " << dollars;
        cout << setw(to_string(digits).length() + 3) << fixed << showpoint << setprecision(2) << meal_cost << endl;

        cout << setw(10) << left << "Tax " << dollars;
        cout << setw(to_string(digits).length() + 3) << fixed << showpoint << setprecision(2) << tax << endl;

        cout << setw(10) << left << "Tip (15%) " << dollars;
        cout << setw(to_string(digits).length() + 3) << fixed << showpoint << setprecision(2) << tip_fifteen << endl;

        //tip outputs then final output statements
        cout << setw(10) << left << fixed << setprecision(2) << "Tip (20%) " << dollars << tip_twenty << endl;
        bill = tip_fifteen + meal_cost + tax;
        cout << "Your total bill is " << fixed << setprecision(2) << dollars << bill << " after 15% gratuity." << endl << "or" << endl;
        bill = tip_twenty + meal_cost + tax;
        cout << "Your total bill is " << fixed << setprecision(2) << dollars << bill << " after 20% gratuity." << endl;



return 0;

我希望我的输出看起来像这样

Enter the meal cost: 56
******************************************
Meal Cost $ 56.00
Tax       $  5.46
Tip (15%) $  8.40
Tip (20%) $ 11.20
Your total bill is 69.86 after 15% gratuity.
or
Your total bill is 72.66 after 20% gratuity.

我的输出看起来像这样

Enter the meal cost: 56
******************************************
Meal Cost $56.00
Tax       $5.46 
Tip (15%) $8.40 
Tip (20%) $11.20
Your total bill is $69.86 after 15% gratuity.
or
Your total bill is $72.66 after 20% gratuity.

我在使用带有浮点数的setw时遇到问题,但是当我尝试将相同的变量设置为int时,它不起作用。我也尝试过使用setw(25)来查看它是否会以某种方式工作,但遗憾的是它没有

c++ output output-formatting
2个回答
1
投票

如果你想让它们对齐,你需要使用right,你还需要在dollars之后添加一个空格“”

cout << setw(10) << left << "Meal Cost " << dollars << " ";
cout << setw(to_string(digits).length() + 3) << fixed << right << showpoint << setprecision(2) << meal_cost << endl;

对于所有打印的陈述,您将得到:

******************************************
Meal Cost $ 56.00
Tax       $  5.46
Tip (15%) $  8.40
Tip (20%) $ 11.20

0
投票

对于价格列中的填充,setw必须设置为足够大的宽度。

例如:

std::cout << "$" << std::setw(10) << std::fixed
          << std::setprecision(2) << 56.0f << std::endl;

打印:

$     56.00

您的代码将宽度设置为:

std::to_string(digits).length() + 3

这只有5个字符,足以容纳“56.00”。对于左侧的额外填充,您应该增加setw宽度。

© www.soinside.com 2019 - 2024. All rights reserved.