📜  如何制作打字效果c++代码示例

📅  最后修改于: 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;
}