Search
 
SCRIPT & CODE EXAMPLE
 

CPP

set precision in c++

#include <iomanip.h>
#include <iomanip>
int main()
{
    double num1 = 3.12345678;
    cout << fixed << showpoint;
    cout << setprecision(2);
    cout << num1 << endl;
}
Comment

set precision in c++

#include <iostream>

int main()
{
  std::cout << std::setprecision(n); //to n SIG FIG
  // any cout comand will be to n sig fig after this comand
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ default array value not null 
Cpp :: how to change certain number from set c++ 
Cpp :: Return multiple values from a function using pointers 
Cpp :: add on screen debug message ue4 
Cpp :: cuda extern __shared__ 
Cpp :: cpp random in range 
Cpp :: write variable to file cpp 
Cpp :: capacity() in c++ 
Cpp :: sqrt cpp 
Cpp :: size of 2d array in c++ 
Cpp :: prime number program 
Cpp :: cout.flush() in c++ 
Cpp :: c++ print current time 
Cpp :: convert string to number c++ 
Cpp :: how to sort a vector in descending order in c++ 
Cpp :: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools" 
Cpp :: what is _asm in C++ 
Cpp :: cin.get vs cin.getline in c++ 
Cpp :: c++ product of vector 
Cpp :: g++ optimization flags 
Cpp :: return by reference in cpp 
Cpp :: maximum int c++ 
Cpp :: c++ check if char is number 
Cpp :: c++ sort vector 
Cpp :: matplotlib hide numbers on axis 
Cpp :: delete one specific character in string C++ 
Cpp :: remove last index of the string in c++ 
Cpp :: how to store pair in min heap in c++ 
Cpp :: restting a queue stl 
Cpp :: check if character in string c++ 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =