VB跳转代码
TextWindow.ForegroundColor="blue"TextWindow.WriteLine("沸羊羊制作")TextWindow.WriteLine(""...
TextWindow.ForegroundColor="blue"
TextWindow.WriteLine("沸羊羊制作")
TextWindow.WriteLine(" ")
TextWindow.Write("请输入数字")
num1=TextWindow.Read()
TextWindow.Write("请输入要计算的符号")
字母=TextWindow.Read()
TextWindow.Write("请输入数字")
num2=TextWindow.Read()
If(字母="*")Then
num3=num1*num2
EndIf
If(字母="/")Then
num3=num1/num2
EndIf
If(字母="+")Then
num3=num1+num2
EndIf
If(字母="-")Then
num3=num1-num2
EndIf
If(字母="")Then
num3="请重新输入"
EndIf
TextWindow.WriteLine(num3)
我想让程序运行到最后TextWindow.WriteLine(num3)
的时候跳转到第四行执行,怎么弄? 展开
TextWindow.WriteLine("沸羊羊制作")
TextWindow.WriteLine(" ")
TextWindow.Write("请输入数字")
num1=TextWindow.Read()
TextWindow.Write("请输入要计算的符号")
字母=TextWindow.Read()
TextWindow.Write("请输入数字")
num2=TextWindow.Read()
If(字母="*")Then
num3=num1*num2
EndIf
If(字母="/")Then
num3=num1/num2
EndIf
If(字母="+")Then
num3=num1+num2
EndIf
If(字母="-")Then
num3=num1-num2
EndIf
If(字母="")Then
num3="请重新输入"
EndIf
TextWindow.WriteLine(num3)
我想让程序运行到最后TextWindow.WriteLine(num3)
的时候跳转到第四行执行,怎么弄? 展开
2个回答
展开全部
TextWindow.ForegroundColor="blue"
TextWindow.WriteLine("沸羊羊制作")
TextWindow.WriteLine(" ")
label1:
TextWindow.Write("请输入数字")
num1=TextWindow.Read()
TextWindow.Write("请输入要计算的符号")
字母=TextWindow.Read()
TextWindow.Write("请输入数字")
num2=TextWindow.Read()
If(字母="*")Then
num3=num1*num2
EndIf
If(字母="/")Then
num3=num1/num2
EndIf
If(字母="+")Then
num3=num1+num2
EndIf
If(字母="-")Then
num3=num1-num2
EndIf
If(字母="")Then
num3="请重新输入"
EndIf
TextWindow.WriteLine(num3)
GoTo label1
当然也可以用while语句,判断条件是True就可以无限循环了
TextWindow.WriteLine("沸羊羊制作")
TextWindow.WriteLine(" ")
label1:
TextWindow.Write("请输入数字")
num1=TextWindow.Read()
TextWindow.Write("请输入要计算的符号")
字母=TextWindow.Read()
TextWindow.Write("请输入数字")
num2=TextWindow.Read()
If(字母="*")Then
num3=num1*num2
EndIf
If(字母="/")Then
num3=num1/num2
EndIf
If(字母="+")Then
num3=num1+num2
EndIf
If(字母="-")Then
num3=num1-num2
EndIf
If(字母="")Then
num3="请重新输入"
EndIf
TextWindow.WriteLine(num3)
GoTo label1
当然也可以用while语句,判断条件是True就可以无限循环了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询