Answers for "set decimals a float number c++"

C++
2

how to make floats output with 2 decimals c++

#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
	float x=10.3445f;
	
	cout<<fixed<<setprecision(5)<<x<<endl;
	cout<<fixed<<setprecision(2)<<x<<endl;
	cout<<fixed<<setprecision(3)<<x<<endl;
	cout<<fixed<<setprecision(0)<<x<<endl;
	
	return 0;
}
Posted by: Guest on April-18-2020
2

how to make a float in C++

public float whatYourFloatIsCalled = 0;
public float whatIsYourFloat;
Posted by: Guest on May-04-2020

Code answers related to "set decimals a float number c++"

Browse Popular Code Answers by Language