hello world

从今天起你就是一名程序员了 —— 2019.09.16ios

开始你的第一个 C / C++ 程序程序员

  • C 版本
1 #include <stdio.h>
2 
3 int main(){
4     printf("hello world");
5     return 0;        
6 }
  • C++ 版本
#include <iostream>
using namespace std;

int main(){
    cout << "hello world";
    return 0;    
}
相关文章
相关标签/搜索