#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ifstream basketFile;
basketFile.open("basket.txt");
double price;
while (!basketFile.eof()) {
basketFile >> price;
cout << price << endl;
}
}
篮子.txt
27.9933
18.992
9.754
11.2543
无论如何,我可以让数字显示为只有两位有效数字?另外,如果我想将一个数字四舍五入,我该怎么做?例如,如果我有数字 6.66 和 4.33,我想要 6.66->6.70 和 4.33->4.30。有什么帮助吗?