Problem H: 检测用户错误输入
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:4748
Solved:4139
Description
根据scanf()的返回值判断scanf()是否成功读入了指定的数据项数,使程序在用户输入123a时,能输出如下运行结果:
123a↙
Input error!
Input
输入格式: "%d %d"
Output
如果成功读入指定的数据项数,输出格式为:"a = %d, b = %d\n"
输入非法数据,输出格式为:"Input error!"
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
Sample Input Copy
123a
Sample Output Copy
Input error!