📅  最后修改于: 2022-03-11 14:44:45.195000             🧑  作者: Mango
代码示例1
int main()
{
string hello = "Your text goes here";
int x=0;
while ( hello[x] != '\0')
{
cout << hello[x];
Sleep(500);
x++;
};
return 0;
}