gpt4 book ai didi

c++ - 我是 C++ 的新手,我想问的问题很少

转载 作者:行者123 更新时间:2023-11-28 02:09:52 25 4
gpt4 key购买 nike

问题是:

Please enter the number of gallons of gasoline: 100
Original number of gallons is: 100
100 gallons is the equivalent of 378.54 liters
Thanks for playing

如何显示“原始加仑数为:100”我的“感谢参与”与“按任意键继续”结合在一起,我不知道如何将它们分开。

#include <iostream>
using namespace std;
int main()
{
float g;
float l;

cout << "Please enter the number of gallons of gasoline ";
cin >> g;

l = g*3.7854;
cout << g << " Gallon is the equivalent of " << l << "liters" << endl;

cout << "Thank you for playing";

system("pause");
return 0;

}

最佳答案

  1. Do not use "use namespace std;" ,这是不好的做法。

  2. Using system("pause") is also bad practice .

  3. 使用

    std::cout << std::endl;

输出换行符,分隔不同的文本行。

关于c++ - 我是 C++ 的新手,我想问的问题很少,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36074524/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com