gpt4 book ai didi

vb.net - Visual Basic 控制台应用程序

转载 作者:行者123 更新时间:2023-12-02 02:08:18 24 4
gpt4 key购买 nike

我正在为计算机科学制作一个控制台应用程序,如果两个数字相同,则显示一条消息,如果不同,则显示一条不同的消息。

这是我到目前为止的代码:

Module Module1

Sub Main()
Dim NumberOne As Integer
Dim NumberTwo As Integer
Console.WriteLine("Enter your first number and then press the enter key")
NumberOne = Console.ReadLine
Console.WriteLine("Now enter your second number and press the enter key")
NumberTwo = Console.ReadLine
If NumberOne = NumberTwo Then
Console.WriteLine("You entered the same two numbers!")
Console.ReadLine()
End If
If NumberOne <= NumberTwo Then
Console.WriteLine("You entered two different numbers")
Console.ReadLine()
End If
End Sub
End Module

这运行正常,但问题是如果您输入两个相同的数字,它会说您输入了相同的数字,但是当您按 Enter 时,它会显示另一条消息,说您输入了两个不同的数字。

有谁知道我怎样才能让它只做其中之一?

谢谢,

jack

最佳答案

请更改您的代码:

 If NumberOne = NumberTwo Then
Console.WriteLine("You entered the same two numbers!")
Console.ReadLine()
Else
Console.WriteLine("You entered two different numbers")
Console.ReadLine()
End If

希望这有帮助!

关于vb.net - Visual Basic 控制台应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12638498/

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