數字與字串 數字方法

2021-10-19 06:10:56 字數 1015 閱讀 1741

1、四捨五入, 隨機數,開方,次方,π,自然常數,絕對值

package pack6;

public

class

numbertest

}

執行結果

2.練習

2.1自然對數e

自己計算的結果

math.e的精度會更大

2.2質數

統計找出一千萬以內,一共有多少質數

質數概念: 只能被1和自己整除的數

舉例:5只能被 1和5整除,所以是質數

8可以被2整除,所以不是質數

code

package pack6;

public

class

prime

//迴圈結束 判斷number是不是1(1不是質數) 是1:return false 不是1:return true

if(number ==1)

return

false

;else

return

true;}

public

static

void

main

(string args)

system.out.

println

(cnt);}

}

字串與數字轉換方法

一 字串轉數字 1.crt函式 需要的標頭檔案 ascii unicode tchar vs2005 intatoi wtoi tstoi ttoi atoi l wtoi l long atol wtol tstoi ttoi atoi l wtoi l int64 atoi64 wtoi64 t...

數字 字串方法

數字方法 int 將字串轉換為數字 a 123 b int a a 0011 b int a,base 2 轉換為二進位制 print b bit length 當前數字的二進位制至少用幾位表示 字串方法 capitalize 首字母大寫 casefold 大寫字母轉換為小寫 更強大,包括一些未知的...

數字轉字串 字串轉數字

數字轉字串 這裡首先用到乙個陣列逆置函式如下 void reverse char arr 逆置 for p arr p arr p 將arr陣列逆置 因為將乙個數字轉成字串,若果是從右往左依次獲得,操作較容易,所以以此得到的字串是數字的逆序字串,所以要逆置,才可得到順序 如下 void myitoa...