標題:
【1-2】我的第一支程式
[打印本頁]
作者:
王瑞喻
時間:
2020-1-20 19:04
標題:
【1-2】我的第一支程式
在螢幕上顯示 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到主控台,告知該程式已成功執行
}
複製代碼
作者:
廖文綺
時間:
2020-1-21 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李益豪
時間:
2020-1-21 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
作者:
郭閎宇
時間:
2020-1-21 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張宏淯
時間:
2020-1-21 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王小函
時間:
2020-1-21 14:44
本帖最後由 王小函 於 2020-1-22 09:34 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"bye"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
辛秉宸
時間:
2020-1-21 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張家瑜
時間:
2020-1-21 14:44
本帖最後由 張家瑜 於 2020-1-21 15:04 編輯
1#include<iostream>
2#include<cstdlib>
3using namespace std;
4int main()
5{
6 cout<<"hello"<<endl;
7 system("pause");
8 return 0;
9}
作者:
紀光晏
時間:
2020-1-21 14:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張家宏
時間:
2020-1-21 14:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
魏丞妤
時間:
2020-1-21 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()//integer
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王立凱
時間:
2020-1-21 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫于晞
時間:
2020-1-21 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()//integer
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳政融
時間:
2020-1-21 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張少瑋
時間:
2020-1-21 14:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾金恩
時間:
2020-1-21 14:48
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李畇學
時間:
2020-1-21 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
詹宜蓁
時間:
2020-1-21 15:07
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main( )
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
作者:
蔡鎧任
時間:
2020-1-21 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊淇鈞
時間:
2020-1-21 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
作者:
詹惇智
時間:
2020-1-21 15:12
v#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"helle"<<endl;
system("pause");
return0"
}
複製代碼
作者:
詹宜蓁
時間:
2020-1-21 15:49
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main( )
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
作者:
張少愷
時間:
2020-1-21 15:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾金恩
時間:
2020-1-21 15:56
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
王小函
時間:
2020-1-21 15:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2