FindSlide.org - это сайт презентаций, докладов, шаблонов в формате PowerPoint.
Email: Нажмите что бы посмотреть
cout.precision(3);
cout.setf (ios::fixed);
cout << 271.84753 << endl;
cout.setf (ios::scientific);
cout << 271.84753 << endl;
cout << scientific << 271.84753 << endl;
271.848
272
2.718e+002
1234.57
1.234568e+03
1234.567890
cout.setf(ios::fixed); //Sets the cout flag for fixed-point
//non-scientific notation trailing zeros
cout.setf(ios::showpoint); //Always shows decimal point
cout << setprecision(2); //Two decimal places
cout << 5.8;
(-12)
( -12 )
(-12)
1234 1234 2322 2322 4d2 4d2
int i;
cin >> i;
if (cin.good()) cout << "OK: " << i << endl;
else cout << "ERROR" << endl;
123
OK: 123
abc
ERROR
int i=5, k=7;
cin >> i;
cout << i << endl;
cin >> k;
cout << k << endl;
abc
5
7
int i=5, k=7;
cin >> i;
cout << i << endl;
cin.clear ();
cin.ignore (256,'\n');
cin >> k;
cout << k << endl;
abc
5
99
99
Input integer value: abc
Try again: +++
Try again: 123
Success: 123