返回列表 發帖

紀錄字元 Char A

本帖最後由 游東祥 於 2013-10-5 17:55 編輯

紀錄字元 Char A
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     char charA = 'A';
  7.     cout << "變數charA的內容是:" << charA << endl;
  8.     system ("pause");
  9.     return 0;
  10. }
複製代碼

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

  4. int main()
  5. {
  6.     char charA = 'A';
  7.     cout << "變數charA的內容是:" << charA << endl;
  8.     system ("pause");
  9.     return 0;
  10. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     char charA = 'A';
  7.     cout<<"整數charA的內容是:"<<charA<<endl;
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

TOP

  1. []#include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6. char charA='A';
  7. cout<<"變數charA的內容是:"<<charA<<endl;

  8. system("pause") ;
  9. return 0;

  10. }
複製代碼
[/code]

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     char charA = 'A';
  6.     cout <<"變數charA的內容是:"<< charA << endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

提示: 作者被禁止或刪除 內容自動屏蔽

TOP

提示: 作者被禁止或刪除 內容自動屏蔽

TOP

本帖最後由 周雍程 於 2013-10-11 20:04 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main ()
  5. {
  6. char charA = 'A' ;
  7. cout << "變數 charA的內容是:" << charA << endl;

  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     char charA ='A';
  7.     cout<< "變數charA的內容是:" << charA << endl;
  8.     system("pause");
  9.     return 0;   
  10.    
  11. }
複製代碼

TOP

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

  4. int main ()
  5. {
  6.      char  charA = 'A';
  7.      cout << "變數charA的內容是:" << charA << endl;

  8.      system ("pause");
  9.      return 0;
  10. }
複製代碼

TOP

返回列表