Board logo

標題: 我的第一支程式 [打印本頁]

作者: tonyh    時間: 2013-1-22 09:16     標題: 我的第一支程式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Hello!"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 羅家恩    時間: 2013-1-22 09:25

本帖最後由 羅家恩 於 2013-1-22 09:29 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 黃子懿    時間: 2013-1-22 09:25

本帖最後由 游東祥 於 2013-1-22 22:12 編輯
  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {

  6.     cout<<"Hello!"<<endl;

  7.     system("pause");

  8.     return 0;

  9. }
複製代碼
老師提醒:第九行的大括號是屬於 int main() 的,所以盡量不要留下第八行的空行喔!
作者: 許逸群    時間: 2013-1-22 09:25

本帖最後由 游東祥 於 2013-1-22 22:19 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. intmain()
  5. {
  6.          count<<"hello<<endl;
  7.          system("pause");
  8.          return0;
  9. }
複製代碼
老師提醒:注意噢!幾個小細節沒有注意到噢!
1. 第五行的int與main要有一個空白分開噢!
2. 第七行的輸出應該是 cout 不是 count 喔!
3. 第七行的 hello 文字應該要被兩個雙引號包覆,少了結尾的雙引號喔!
4. 第九行的 return 與 0 要用空白分開噢!

作者: 劉得旗    時間: 2013-1-22 09:25

本帖最後由 游東祥 於 2013-1-22 22:15 編輯
  1. #include<iostream> //
  2. #include<cstdlib>
  3. using namespace std;//
  4. int main()//
  5. {
  6.     cout<< "hello" <<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼
老師提醒:雙斜線是注解的意思,如果雙斜線後面沒有想要寫任何注解,那就不需要加上「//」雙斜線噢!
作者: 高紹恩    時間: 2013-1-22 09:25

本帖最後由 游東祥 於 2013-1-22 22:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;//
  4. int main()//
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9.     }
複製代碼
老師提醒:
1. 雙斜線是注解的意思,如果雙斜線後面沒有想要寫任何注解,那就不需要加上「//」雙斜線噢!
2. 第九行的右大括號與第五行的左大括號是一對的,所以最好把第九行的大括弧前面的空格都刪除,讓這組大括號在同一個位置上!

作者: 郭凡瑛    時間: 2013-1-22 09:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"ㄏㄏ!!你好!:)"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 劉泳鱔    時間: 2013-1-22 09:25

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"hellow"<<endl;
  7.      system("pause");
  8.      return 0;
  9. }   
複製代碼

作者: 吳東哲    時間: 2013-1-22 09:25

本帖最後由 吳東哲 於 2013-1-22 09:28 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 許育碩    時間: 2013-1-22 09:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");  
  8.     return 0;
  9. }   
複製代碼

作者: 蘇昱安    時間: 2013-1-22 09:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.       cout<<"hello,"<<endl;
  7.       system("pause");
  8.       
  9.       return 0;
  10. }
複製代碼

作者: 林鎧言    時間: 2013-1-22 09:26

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }   
複製代碼

作者: 王煥緯    時間: 2013-1-22 09:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Hello!"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 李家宇    時間: 2013-1-22 09:26

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"hello"<<endl;   
    system("pause");
    return 0;
}
作者: 郭妤真    時間: 2013-1-22 09:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }   
複製代碼

作者: 高允懋    時間: 2013-1-22 09:27

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {

  6.     cout<<"Hello!"<<endl;

  7.     system("pause");

  8.     return 0;

  9. }
複製代碼

作者: 鄧皓銘    時間: 2013-1-22 09:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;                                               
  4. int main()
  5. {
  6.        cout<<"hello "<<endl;
  7.        system("pause");
  8.        return 0;
  9. }     
複製代碼

作者: 李家宇    時間: 2013-1-22 09:30

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"hello"<<endl;   
    system("pause");
    return 0;
}
作者: 翁睿辰    時間: 2013-1-22 09:31

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"Hello!"<<endl;
    system("pause");
    return 0;
}
作者: 林長逸    時間: 2013-1-22 09:31

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {

  6.     cout<<"Hello!"<<endl;

  7.     system("pause");

  8.     return 0;

  9. }
複製代碼

作者: 郭妤真    時間: 2013-1-22 10:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
複製代碼

作者: 高允懋    時間: 2013-1-22 10:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x=24,y=8;
  7. cout<<"當x的值為"<<x<<"y的值為"<<y<<"時"<<endl;
  8. cout<<"x+y"<<x+y<<endl;   
  9. cout<<"x-y"<<x-y<<endl;  
  10. cout<<"x*y"<<x*y<<endl;  
  11. cout<<"x/y"<<x/y<<endl;  
  12. cout<<"x%y"<<x%y<<endl;  
  13. system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 王煥緯    時間: 2013-1-22 10:48

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10000,y=100;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 王煥緯    時間: 2013-1-22 11:08

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入x的值:   ";
  8.     cin>>x;
  9.     cout<<"請輸入y的值:   ";
  10.     cin>>y;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     cout<<"x+y="<<x+y<<endl;
  14.     cout<<"x-y="<<x-y<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 黃柏維    時間: 2013-2-16 14:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 黃柏維    時間: 2013-2-16 14:35

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"Hello"<<endl;
    system("pause");
    return 0;
}
作者: 黃柏維    時間: 2013-2-16 14:43

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2