如何输入随机数量的项目作为项目 ID(字符串),其中空白项目 ID 表示最后一个项目?

how do I input a random number of items as Item ID (string) where a blank item ID signifies the last item?

我想输入未知数量的变量作为项目 ID,它是一个字符串,当用户输入空白项目时,程序应该知道这是最后一次输入。

这是伪代码,但你可以这样做:

list = new listOf(string)
input = string.empty

do
    input = readInputFromConsole()
    if not isBlank(input) then
        list.add(input)
    end if    
while not isBlank(input)

资源: