① 整數
② 浮點數
③ 計算符號
/
// 取整
% 取餘
**冪
④ 常用函式
① 單引號、雙引號、三引號
② 字串的拼接
③ 資料型別轉換
④ 遮蔽轉義符\n例項
print(『c:\note1.txt』)
==>c:
ote1.txt
原因:\n代表換行
修改方案①:\n前加\
print(『c:\\note1.txt』)
修改方案②:在字串的外面加r,表示後面的字串中的轉義符全都不生效
print(r』c:\note1.txt』)
修改方案③:用/ 代替\ 正斜槓代表反斜槓
print(『c:/note1.txt』)
⑤ 字串的下標
str1=』abcd『
列印b==>print(str1[1])
或print(str1[-3])
⑥ 字串的切片 [起始值:終止值:步長]
數字與字串 數字方法
1 四捨五入,隨機數,開方,次方,自然常數,絕對值 package pack6 public class numbertest 執行結果 2.練習 2.1自然對數e 自己計算的結果 math.e的精度會更大 2.2質數 統計找出一千萬以內,一共有多少質數 質數概念 只能被1和自己整除的數 舉例 5只...
數字與字串轉換
題目大意 給定兩個數 i 和 j 將數字 i j 翻轉後按公升序排列輸出。include include include include includeusing namespace std struct node num 55 翻轉字串 char strrev char s int len str...
mybatis concat數字與字串
當我在concat這個sum和 千 的時候出了問題 查詢出字段與展示不一樣是因為查詢出來之後進行了整理 test global order country test global order longitude test global order lantitude concat sum test ...