Toggle navigation
HUSTOJ
F.A.Qs
Web Board
ProblemSet
Source/Category
Status
Ranklist
Contest
Recent
Login
Problem1140--混合类型数据格式化输入
1140: 混合类型数据格式化输入
Time Limit:
1 Sec
Memory Limit:
128 MB
Submit:
0
Solved:
1
[
Submit
] [
Status
] [
Web Board
] [Creator:
]
Description
本题要求编写程序,顺序读入浮点数1、整数、字符、浮点数2,再按照字符、整数、浮点数1、浮点数2的顺序输出。
Input
输入在一行中顺序给出浮点数1、整数、字符、浮点数2,其间以1个空格分隔。
Output
输入在一行中顺序给出浮点数1、整数、字符、浮点数2,其间以1个空格分隔。
Sample Input
Copy
2.12 88 c 4.7
Sample Output
Copy
c 88 2.12 4.70
Source/Category