- C++
特殊函数
- 2025-7-22 11:12:26 @
#include<bits/stdc++.h>
using namespace std;
void Slowsay(string a) {
int l = a.size();
for (int i = 0; i < l; i++) {
cout << a[i];
Sleep(4);
}
printf("\n");
}
int main()
{
Slowsay("hello,world");
return 0;
}
0 条评论
目前还没有评论...