Hello,world
做程序员的第一件事有可能就是输出Hello,world了。
C++版:
#include<bits/stdc++.h>
using namespace std;
int main() {cout<<"Hello,world"<<endl;return 0;
}
C语言版:
#include<stdio.h>
int main() {printf("Hello,world\n");return 0;
}
Python版:
print("Hello,world",end='\n')
vbs版:
msgbox "Hello,world"
发布者:admin,转转请注明出处:http://www.yc00.com/web/1701069303a1049466.html
评论列表(0条)