Відповіді:
З <iomanip>
, ви можете використовувати std::fixed
іstd::setprecision
Ось приклад
#include <iostream>
#include <iomanip>
int main()
{
double d = 122.345;
std::cout << std::fixed;
std::cout << std::setprecision(2);
std::cout << d;
}
І ви отримаєте вихід
122.34
#define FIXED_FLOAT(x) std::fixed <<std::setprecision(2)<<(x)
це спрощує використання до:cout<<FIXED_FLOAT(d)
Ви майже були там, вам також потрібно використовувати std :: fix, див. Http://www.cplusplus.com/reference/iostream/manipulators/fixed/
#include <iostream>
#include <iomanip>
int main(int argc, char** argv)
{
float testme[] = { 0.12345, 1.2345, 12.345, 123.45, 1234.5, 12345 };
std::cout << std::setprecision(2) << std::fixed;
for(int i = 0; i < 6; ++i)
{
std::cout << testme[i] << std::endl;
}
return 0;
}
Виходи:
0.12
1.23
12.35
123.45
1234.50
12345.00
setprecision(n)
стосується всього числа, а не дробової частини. Вам потрібно використовувати формат з фіксованою точкою, щоб застосувати його до дробової частини:setiosflags(ios::fixed)
Спростіть прийняту відповідь
Спрощений приклад:
#include <iostream>
#include <iomanip>
int main()
{
double d = 122.345;
std::cout << std::fixed << std::setprecision(2) << d;
}
І ви отримаєте вихід
122.34
Довідка:
У мене виникла проблема з цілими числами, бажаючи послідовного форматування.
Перезапис для повноти:
#include <iostream>
#include <iomanip>
int main()
{
// floating point formatting example
double d = 122.345;
cout << std::fixed << std::setprecision(2) << d << endl;
// Output: 122.34
// integer formatting example
int i = 122;
cout << std::fixed << std::setprecision(2) << double(i) << endl;
// Output: 122.00
}
У мене була така схожа проблема в змаганні з кодування, і ось я впорався з цим. Встановлення точності 2 для всіх подвійних значень
Спочатку додайте заголовок, щоб використовувати setprecision
#include <iomanip>
Потім додамо наступний код у нашому головному
double answer=5.9999;
double answer2=5.0000;
cout<<setprecision(2)<<fixed;
cout <<answer << endl;
cout <<answer2 << endl;
Вихід:
5.99
5.00
Вам потрібно використовувати фіксовану для написання 5.00 ось чому, ваш вихід не прийде на 5.00.
Для встановлення фіксованих 2 цифр після десяткової крапки використовуйте ці перші:
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
Потім надрукуйте подвійні значення.
Це приклад:
#include <iostream>
using std::cout;
using std::ios;
using std::endl;
int main(int argc, char *argv[]) {
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
double d = 10.90;
cout << d << endl;
return 0;
}
з шаблонами
#include <iostream>
// d = decimal places
template<int d>
std::ostream& fixed(std::ostream& os){
os.setf(std::ios_base::fixed, std::ios_base::floatfield);
os.precision(d);
return os;
}
int main(){
double d = 122.345;
std::cout << fixed<2> << d;
}
подібний як для наукових, так і з опцією ширини (корисно для стовпців)
// d = decimal places
template<int d>
std::ostream& f(std::ostream &os){
os.setf(std::ios_base::fixed, std::ios_base::floatfield);
os.precision(d);
return os;
}
// w = width, d = decimal places
template<int w, int d>
std::ostream& f(std::ostream &os){
os.setf(std::ios_base::fixed, std::ios_base::floatfield);
os.precision(d);
os.width(w);
return os;
}
// d = decimal places
template<int d>
std::ostream& e(std::ostream &os){
os.setf(std::ios_base::scientific, std::ios_base::floatfield);
os.precision(d);
return os;
}
// w = width, d = decimal places
template<int w, int d>
std::ostream& e(std::ostream &os){
os.setf(std::ios_base::scientific, std::ios_base::floatfield);
os.precision(d);
os.width(w);
return os;
}
int main(){
double d = 122.345;
std::cout << f<10,2> << d << '\n'
<< e<10,2> << d << '\n';
}
Просто незначна точка; помістіть у заголовку наступне
використання простору імен std;
тоді
std :: cout << std :: fix << std :: setprecision (2) << d;
стає спрощеним до
cout << фіксований << задана точність (2) << d;
using namespace std;
заради цього - зрозумійте, чому ви так робите.
це приклад з використанням матриці.
cout<<setprecision(4)<<fixed<<m[i][j]