返回列表 發帖

[隨堂測驗] C++ 基本程式架構

請將成果回覆底下

回復 1# 方浩葦
#include <iostream>
#include <cstdlib>
using namespace std;

int main(){

    cout <<"hello world"<<endl;
    system("pause");
    return 0;
}

TOP

本帖最後由 洪榮辰 於 2024-5-25 15:26 編輯

#include<iostream>
#include<cstdlib>
using namespace std;

int main(){

    cout<<"Hello word"<<endl;
    system("pause");
    return 0;
}

TOP

#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
    cout<<"Hello world"<<endl;
    system("pause");
    return 0;
}

TOP

返回列表