Computer Science, asked by vasavikamal369, 10 months ago

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 shashinavaratna83149
7

Answer:

it is so easy do it i am class 7

Answered by pavithrapenumala283
6

Answer:

t=int(input)

while (t):

n=float(input())

Print(n)

t-=1

Explanation:

Similar questions