1091: 字符串输入输出函数

Memory Limit:256 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:10 Solved:8

Description


  编写函数GetReal和GetString,在main函数中分别调用这两个函数。在读入一个实数和一个字符串后,将读入的结果依次用printf输出。
  两次输入前要输出的提示信息分别是"please input a number: ”和"please input a string: "

Input

共两行,第一行为一个数字,第二行为一个字符串

Output

见题目描述

Sample Input Copy

9.56
hello

Sample Output Copy

please input a number:
please input a string:
9.56
hello

HINT

HINT:时间限制:1.0s 内存限制:256.0MB

Source/Category