Input decimals
Write a program that takes as input decimals and prints the decimals.
Input Format
The first line contains N, the number of test cases.
The N lines after that contain the decimals that you need to print.
Output Format
Print each decimal in a single line
Sample Input / Output
Input
3
2.5
3.99
145.678
Output
2.5
3.99
145.678
Answers
Answered by
7
Answer:
it is so easy do it i am class 7
Answered by
6
Answer:
t=int(input)
while (t):
n=float(input())
Print(n)
t-=1
Explanation:
Similar questions
Hindi,
4 months ago
Math,
10 months ago
Computer Science,
10 months ago
Biology,
1 year ago
Biology,
1 year ago