返回列表 發帖

C++資料型態與數值範圍



整數 int short long
單精數 float
倍精數 double
字元 char
文字 string
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

整數 int short long
單精數 float
倍精數 double
字元 char
文字 string

TOP

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

  4. int main()
  5. {
  6.    string name="蘇詠翔", school="師大附中";
  7.    int age=13;
  8.   float x=151.1,y=32.4;
  9.   cout<<"我的大名"<<name<<endl;
  10.   cout<<"就讀"<<school<<endl;
  11.   cout<<"今年"<<age<<"歲"<<endl;
  12.   cout<<"體重"<<y<<"公斤"<<endl;
  13.   cout<<"身高"<<x<<"公分"<<endl;
  14.      system("pause");
  15.      return 0;
  16. }
複製代碼

TOP

整數 int short long
單精數 float
倍經數 double
字元 char
文字 string

TOP

整數 int short long
單精數 float
倍精數 double
字元 char
文字 string

TOP

整數int long short
單精數float
倍精數double
字元char
文字string

TOP

整數 int short long
單精數 float
倍精數 double
字元 char
文字 string

TOP

整數: int short long
單精數: float
倍精數: double
字元: char
文字: string
林祐霆

TOP

整數 int short long
單精數 float
倍精數 double
字元 char
文字 string

TOP

返回列表