本蒟蒻闲得慌
每日一个小知识
这个按钮可以让当前的代码格式化,比如:
#include <bits/stdc++.h>
using namespace std;
int main() {
for(int i=1;i<=10;i++)
{
cout<<"HELLO WORLD!";
}
return 0;
}
当按下这个按钮的时候就会把代码变成这样:
#include <bits/stdc++.h>
using namespace std;
int main() {
for(int i=1; i<=10; i++) {
cout<<"HELLO WORLD!";
}
return 0;
}