我正在制作一个程序,并且有一个需要读取的 .txt 文件,并从中获取命令。文本文档如下所示:
U
R
F 10
D
F 13
Q
我需要从中得到数字。我读取文件的方式来自一个ifstream
名为instream
. 目前我正在使用
while(instream.get(charVariable)){
switch(charVariable){
case 'F': //do the forward command
break;
...
}
}
forward 命令需要占用该行,它确实需要读取F
,跳过空格,并将整数放入int
变量中。我对 c++ 很陌生,所以我需要帮助...... 任何帮助都会很棒!谢谢