#include <bits/stdc++.h>
using namespace std;
int main()
{
string s = "Shutheblanksup ~ ";
auto t = s;
for (auto i : s)
cout << i << endl;
while (true)
return 0;
}
After:
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s="Shutheblanksup ~ ";
auto t=s;
for(auto i:s)
cout<<i<<endl;
while(true)
return 0;
}
立个Flag,八月回家计划再添加一些功能,例如支持Java风格的花括号,如下所示
int main(){
return EOF;
}
while(true){
This is java style, right?
}