Skip to content

Commit 8dbef9d

Browse files
Update 1datatypes.cpp
1 parent 470d2a5 commit 8dbef9d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

1datatypes.cpp

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*Input Format
2+
3+
Input consists of the following space-separated values: int, long, char, float, and double, respectively.
4+
5+
Output Format
6+
7+
Print each element on a new line in the same order it was received as input. Note that the floating point value should be correct up to 3 decimal places and the double to 9 decimal places.
8+
9+
Sample Input
10+
11+
3 12345678912345 a 334.23 14049.30493
12+
Sample Output
13+
14+
3
15+
12345678912345
16+
a
17+
334.230
18+
14049.304930000 */
19+
20+
121
#include <iostream>
222
#include <cstdio>
323
#include <iomanip>

0 commit comments

Comments
 (0)