How do we give decimal inputs and outputs in C++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do we give decimal inputs and outputs in C++

16th Oct 2020, 11:23 AM
Bharadwaaja Kanakadandi
Bharadwaaja Kanakadandi - avatar
3 Answers
+ 1
by working with floats or typecasting float and using the print specifier %f printf("%f",float_num)
16th Oct 2020, 11:27 AM
Slick
Slick - avatar
+ 1
16th Oct 2020, 11:47 AM
你知道規則,我也是
你知道規則,我也是 - avatar
0
You can use float or double data type double deci=5.678 std::cout<<deci;
16th Oct 2020, 3:25 PM
A S Raghuvanshi
A S Raghuvanshi - avatar