如何清除用户输入并再次使用相同的变量?

时间:2015-03-01 14:17:56

标签: vb.net loops input

很抱歉,问题不明确。我是编程的新手,我正在努力制作一个类似JARVIS的小程序。我在vb.net中对此进行编码,因为这是我在学校教过的唯一语言。这是我到目前为止提出的代码:

Module Module1

Sub Main()

    Dim txtInput As String

    txtInput = Console.ReadLine()

    Select Case txtInput
        Case Is = "hello jarvis", "hello"
            Console.WriteLine("Hello Sir")

        Case Is = "jarvis"
            Console.WriteLine("Yes Sir")
    End Select

        Select txtInput
        Case Is = "what time is it", "what's the time", "current time"

    End Select

    Console.ReadLine()

End Sub

结束模块

我正努力做到这一点,以便我可以不断询问不同的案例问题,并且每次都会给出不同的答案。现在,我只能问一个问题,它会给我一个输出。这可能有一个简单的答案,但正如我所说,我真的开始编程2-3周前。

提前致谢。

1 个答案:

答案 0 :(得分:0)

如果您想摆脱用户的输入,请执行以下操作:

TextBox1.Text = ""

或者如果要删除变量的值:

Variable = ""