|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 不二如是 于 2017-6-2 06:04 编辑
推荐阅读:
中国未有牛顿,早有爱因斯坦-下 | 建议阅读3.78min
0037 - 如何自学一门编程语言?|【老司机的套路与真诚】
- C
- #include
- int main(void)
- {
- printf("Hello World --- FIshc.com \n");
- return 0;
- }
复制代码
- C++
- #include
- int main()
- {
- std::cout ( "Hello World --- Fisch.com" );
- return 0;
- }
复制代码
- C#
- class HelloWorld{
- static void Main(string[] args)
- {
- Ststem.Console.WriteLine("Helllo,World!");
- }
- }
复制代码
- OC
- #import
- int main(int arg,cons char *argv[])
- {
- printf("yellow world!\n");
- return 0;
- }
复制代码
- Java
- public class Hello{
- public static void main(String[] args)
- {
- System.out.println("Hello,World");
- }
- }
复制代码
- JavaScript
- PHP
- <?php
- echo 'Hello,world';
- ?>
复制代码
- Basic
- Python
发现错误了吗? |
|