返回列表 發帖

我的第一支程式

  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: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. }
複製代碼

TOP

本帖最後由 游東祥 於 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() 的,所以盡量不要留下第八行的空行喔!

TOP

本帖最後由 游東祥 於 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 要用空白分開噢!

TOP

本帖最後由 游東祥 於 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. }
複製代碼
老師提醒:雙斜線是注解的意思,如果雙斜線後面沒有想要寫任何注解,那就不需要加上「//」雙斜線噢!

TOP

本帖最後由 游東祥 於 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. 第九行的右大括號與第五行的左大括號是一對的,所以最好把第九行的大括弧前面的空格都刪除,讓這組大括號在同一個位置上!

TOP

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

TOP

  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. }   
複製代碼

TOP

本帖最後由 吳東哲 於 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. }
複製代碼

TOP

  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. }   
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }   
複製代碼

TOP

  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. }
複製代碼

TOP

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

TOP

  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. }   
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }     
複製代碼

TOP

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

TOP

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

TOP

  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. }
複製代碼

TOP

返回列表