标题: 【请教】 string 中 detect 字 [打印本页] 作者: bboycs 时间: 2011-8-13 12:32 AM 标题: 【请教】 string 中 detect 字 【c++】
solitaire 游戏指令
example command:
【
“move a new card to column 1”
“move a new card to stack 1
“move 1 card from column 5 to column 3”
“move 4 cards from column 3 to column 7”
】
getline(cin,inst)
if(inst == ???)
{
...
}
复制代码
2”
请问要怎么做才可以找到 column 和 getline 里的integer??
另外if statement要怎么打才可以include integer ??
有劳了~作者: Irvine1987 时间: 2011-8-13 12:56 AM
你的问题很乱勒作者: bboycs 时间: 2011-8-13 01:11 AM
是很难问一下- -。。
这是我必须 input the command...
your command : =>move a card from stack 6 to column 2
要如何detect这条command要我去的operation
因为有很多种command...
“move 4 cards from column 3 to column 7”
"next card"作者: ~Zero 时间: 2011-8-16 10:05 AM
把所有的 command 可能性都列出来。找出其中能够分辨的不同点。