OK,所以我试着做一个字符串的事情, 这样字符串就可以更新。 有点像你有一个字符串 Hello, 我想要它自己更新一些像 Hh"h"hel"hel"hell"hell"hello
因此,我有:
#include <iostream>
#include <string>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
using namespace std;
int main()
{
system("title game");
system("color 0a");
string sentence = "super string ";
for(int i=1; i<sentence.size(); i++){
cout << sentence.substr(0, i) <<endl;
}
return 0;
}
代码返回像:
"s "su" "sup" "supe" "super"
显然在不同的线条上, 但当我删除结尾线时, 句子构建者就发狂了。 它展示了类似“ spupppuepr sttrrrrtsubstringsubstrusing substrusing ” 的东西 。
我能否更新同一线上的线条? (而且没有完全销毁)