標題:
我的第一支程式
[打印本頁]
作者:
王瑞喻
時間:
2021-2-1 12:52
標題:
我的第一支程式
在螢幕上顯示 hello 字樣.
#include<iostream> //引入 <基本輸入輸出> 標頭檔 in & out stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
cout<<"hello"<<endl; //cout輸出 endl換行
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
方黃生
時間:
2021-2-1 14:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何若晴
時間:
2021-2-1 14:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2021-2-1 14:26
#include<iostream> //輸入輸出功能 工具箱1
#include<cstdlib> //標準函式庫 工具箱2
using namespace std; //叫做std的房間
int main()//主函式
{
cout<<"你好!!!"<<endl;
system("pause");//暫停畫面
return 0;//回傳0
}
//ctrl+A 全選 +C複製 +V貼上
複製代碼
作者:
蔡宜均
時間:
2021-2-1 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
莊鈞宸
時間:
2021-2-1 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
莊念篪
時間:
2021-2-1 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"我好"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃昱凱
時間:
2021-2-1 14:27
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<< endl;
system("pause");
return 0;
}
複製代碼
作者:
李奕廷
時間:
2021-2-1 14:27
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
//cout<<"you......"<<endl;
// system("pause");
return 0;
}
複製代碼
回復
1#
王瑞喻
作者:
洪曼崴
時間:
2021-2-1 14:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張晏滕
時間:
2021-2-1 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
王瑞喻
作者:
方凱聲
時間:
2021-2-1 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王偉樺
時間:
2021-2-1 14:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"o97987888888888888888888888888888888888888888888888888888888888888888888888855555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555o"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳仕約
時間:
2021-2-1 14:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
怡璇
時間:
2021-2-1 14:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"Heiio"<<endl;
system("pause");
return0;
}
複製代碼
作者:
李天輝
時間:
2021-2-1 14:43
#include<iostream>
using namespace std;
int main()
{
cout<<"Hi,nice to meet you"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
方凱聲
時間:
2021-2-1 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
[/code][/code]
作者:
方黃生
時間:
2021-2-2 10:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score)
cout<<"恭喜你及格了"<<endl;
}else
{
cout<<"不及格~殺"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
方凱聲
時間:
2021-2-2 13:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!"<<endl;
}else
{
cout<<"恭喜你! 不及格!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪曼崴
時間:
2021-2-2 13:38
#include<iostream> //引入 <基本輸入輸出> 標頭檔 in & out stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不及格~斬!"<<endl;
}
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2