1
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
typedef long long ll;
typedef string str;
typedef stringstream strs;
typedef intmax_t i_m;
char a;
int main(){
cout<<"请输入n(想要多少就输入多少)个符号,按!清除,按0退出。\n";
Sleep(1000);
system("cls");
while(true){
cin>>a;
if(a=='0'){
system("cls");
cout<<"感谢您的使用。";
Sleep(1000);
system("cls");
cout<<"再见!!!";
Sleep(1000);
system("cls");
break;
}
if(a=='!'){
system("cls");
}
}
return 0;
}
