第一個c++程式碼
目標:在螢幕上輸出「Hello, World!」
Step 1:
#include<iostream>
using namespace std;
int main() {
return 0;
}Step 2:
cout << "Hello, World!" ;Step 3:
Step 4:
Last updated
#include<iostream>
using namespace std;
int main() {
return 0;
}cout << "Hello, World!" ;Last updated