從今天起你就是一名程式員了 —— 2019.09.16
開始你的第一個 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; }
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/230506.html
標籤:其他
上一篇:面試必備好文丨面試官:行程和執行緒,我只問這19個問題!
下一篇:Java之楊輝三角
