.NET自由天空
Would you like to react to this message? Create an account in a few clicks or log in to continue.

商品打折问题

向下

商品打折问题 Empty 商品打折问题

帖子  连振威 网2 周五 三月 21, 2008 10:50 am

Module Module1

Sub Main()
Dim x, y As Single
x = Console.ReadLine
If x > 1000 And x <= 2000 Then
y = x * 0.95
ElseIf x > 2000 And x <= 3000 Then
y = x * 0.9
ElseIf x > 3000 And x <= 5000 Then
y = x * 0.85
ElseIf x >= 5000 Then
y = x * 0.8
ElseIf x <= 1000 Then
y = x

End If
Console.WriteLine(y)

End Sub

End Module

连振威 网2

帖子数 : 1
注册日期 : 08-03-21

返回页首 向下

返回页首


 
您在这个论坛的权限:
不能在这个论坛回复主题