“优化”了一下Hello World
#include <iostream>
#include <string>
using namespace std;
string s1="Hello,World!";
void put(){
if(1==1){
if(2==2){
if(3==3){
if(4==4){
if(5==5){
if(6==6){
if(7==7){
if(8==8){
for(int i=0;i<s1.size();i++){
cout<<s1[i];
}
}
}
}
}
}
}
}
}
}
void put1(){
put();
}
void put2(){
put1();
}
void put3(int x){
if(x==1){
put2();
return;
}
put3(x-1);
}
int main(){
put3(10);
return 0;
}