这个程序如何用VS2012编写?
编写一个程序,显示一个菜单,为您提供加法、减法、乘法或除法的选项。获得您的选择后,该程序请求两个数,然后执行您选择的操作。该程序应该只接受它所提供的菜单
选项。它应该使用float类型的数,并且如果用户未能输入数字应允许其重新输入。在除法
的情况中,如果用户输入O作为第二个数,该程序应该提示用户输入一个新的值。一个典
型的程序运行应该如下所示?
Enter the operation of your choice:
a. add s. subtract
m. multiply d. divide
q. quic
a
Enter first number: 22.4
Enter second number: one
one is not an number.
Please enter a number, such as 2.5. -1.78E8, or 3. 1
22.4 + 1 = 23.4
Enter the operation of your choice:
a. add s. subtract
m. multiply d. divide
q. quit
d
Enter first number: 18.4
Enter second number: O
Enter a number other than 0: 0.2
18.4 / 0.2 = 92
Enter the operation of your choice:
a. add s. subtract
m. multiply d. divide
q. quit
q
Bye.
(注:加粗的字符和数字表示用户输入。)
[此贴子已经被作者于2017-4-12 22:24编辑过]