#982. 3-2字符串输入输出函数

3-2字符串输入输出函数

说明

算法提高&nbsp 3-2字符串输入输出函数&nbsp  
时间限制:1.0s&nbsp  &nbsp 内存限制:512.0MB
 &nbsp  &nbsp
描述
  编写函数GetReal和GetString,在main函数中分别调用这两个函数。在读入一个实数和一个字符串后,将读入的结果依次用printf输出。
  两次输入前要输出的提示信息分别是" please&nbsp input&nbsp a&nbsp number:\n”和" please&nbsp input&nbsp a&nbsp string:\n"
样例输入
9.56
hello
样例输出
please&nbsp input&nbsp a&nbsp number:
please&nbsp input&nbsp a&nbsp string:
9.56
hello