gpt4 book ai didi

sql - "if, else"计算语句有问题

转载 作者:行者123 更新时间:2023-12-04 06:44:25 24 4
gpt4 key购买 nike

我正在使用 Microsoft Visual Studio 2008 和 VB.NET,在类里面我们被分配了这个项目:

A procedure should calculate a 2% price increase on all red shirts, but a 1% price increase on all other items. In addition to calculating the price increase, the procedure also should calculate the new price.

You can use the variables strItemColr, strItem, decOrigPrice, decIncrease, and decNewPrice. Format the original price, price increase, and new price in the lblOriginal, lblIncrease, and lblNewPrice controls, respectively.

Write the Visual Basic code.


如果没有答案,请提供一些帮助。我 16 岁,正在上高中/大学类。我们的老师在学院通过 Skype 教学,所以我只能得到她的帮助。

最佳答案

我不会试图解决问题,我只会给你提示。公平吗?而且,我会故意使用不同的变量名称,以便更清楚:

'Check the shirt color
If shirtColor = "Red" Then
increase1 = oldprice1 * 0.02
newPrice1 = oldPrice1 + increase1
Else
increase2 = oldPrice2 * 0.01
newPrice2 = oldPrice2 + increase2
End If

现在,要从我这里获得 A,您必须创建颜色的枚举而不是字符串,或者使用现有的枚举,如 System.Drawings.Color
字符串很棘手,有一个拼写错误或一个字母的大写,它是 VB.NET 的不同颜色

关于sql - "if, else"计算语句有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3873920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com