字元型
# include
using
namespace std;
intmain()
/*a字元變數所佔的記憶體空間是:1
9765
*/
轉義字元
# include
using
namespace std;
intmain
(void)/*
hello world
hello world
\hello world
abcde 12345
abc 3456
a 12344567
abcedfgh 123
*/
字串
#include
using
namespace std;
#include
//string標頭檔案
intmain()
/*不積跬步無以至千里
一口吃不成乙個胖子
*/
布林型別
# include
using
namespace std;
intmain()
/*10bool 所佔的記憶體空間是:1
*/
資料輸入
# include
using
namespace std;
# include
intmain()
# include
using
namespace std;
# include
intmain()
# include
using
namespace std;
# include
intmain()
/*請輸入char 型別變數的值
ach = a
*/
# include
using
namespace std;
# include
intmain()
/*請輸入字串的值
你好str = 你好
*/
# include
using
namespace std;
# include
intmain()
/*請輸入布林型別的變數flag的值
23flag = 1
算術運算子
# include
using
namespace std;
intmain()
/*a+b=40
a-b=-20
a*b=300
a/b=0
2.4/2=1.2
a%b=10
x = 11
y =19
m = 12
n = 11
k = 11,l = 110
s = 10,h = 2
*/
賦值運算子
# include
using
namespace std;
intmain()
/*100
20050
20010
10*/
比較運算子
# include
using
namespace std;
intmain
(void)/*
0101
01*/
邏輯運算子
# include
using
namespace std;
intmain()
/*011
0011
0*/
選擇結構-if語句
# include
using
namespace std;
intmain()
return0;
}/*if單行判斷
請輸入你的年齡:
18您輸入的年齡是:18
請輸入你的年齡:
20您輸入的年齡是:20
您已經成年
*/
# include
using
namespace std;
intmain()
else
return0;
}/*請輸入你的年齡:
16您輸入的年齡是:16
您還沒有成年
*/
# include
using
namespace std;
intmain()
else
if(age >15)
else
if(age >7)
else
if(age >5)
else
return0;
}/*請輸入你的年齡:
16您輸入的年齡是:16
正在上初中
請輸入你的年齡:
10您輸入的年齡是:10
正在上小學
*/
選擇結構-巢狀if
# include
using
namespace std;
intmain()
else
}else
else}
cout <<
"三目運算子"
<< endl;
int temp =0;
int max =0;
temp =
(a > b)
? a : b;
max =
(temp > c)
? temp : c;
cout <<
"max = "
<< max << endl;
return0;
}/*請輸入第乙個人的身高:
189請輸入第二個人的身高:
190請輸入第三個人的身高:
188你輸入的三個人的身高分別是:189,190,188
第二個人最高190
三目運算子
max = 190
*/
選擇結構-三目運算子
# include
using
namespace std;
intmain()
選擇結構-switch
# include
using
namespace std;
intmain()
return0;
}/*請輸入當前的月份
12您輸入的月份是12
冬天*/
python之基礎(資料型別 運算子)
numbers 數字分為 integer整數,float浮點,complex複數 整數 二進位制 八進位制 十六進製制 沒有小數部分 包含正數,負數,0 a 10 b 7 print a,b 二進位制 只有0,1 以0b開頭的01串 a 0b110 b 0b11110 print a,b 八進位制 ...
資料型別之數字型別 運算子
一 整 形 int 整形就是整數型別 num 123 數字型別不用加引號,加引號的都是字串形式。print num 字串轉換數字 int num 123 print type num num type 檢視資料型別 a int num print type a a str 123 int 123 n...
資料型別 運算子
一.資料型別 1.整數型別 2.浮點數 定點數 m為精度 資料總長度 d為標度 小數點後長度 單精度 佔4個位元組,有效數字是7位 雙精度 佔8個位元組,有效數字是16位 在一定情況下,浮點數能表示更大的儲存範圍,但容易產生誤差。因而對精度要求較高時,選擇定點數。定點數以字串儲存。3.日期 時間 4...