Hello world不用我说了吧。
C++:
#include<bits/stdc++.h>
using namespace std;
string s="Hello,world!";
int main(){
cout<<s;
return 0;
}
Python:
s='Hello,world!'
print(s)
Hello world不用我说了吧。
C++:
#include<bits/stdc++.h>
using namespace std;
string s="Hello,world!";
int main(){
cout<<s;
return 0;
}
Python:
s='Hello,world!'
print(s)
3825
121
473

被折叠的 条评论
为什么被折叠?
