//number轉string
//需要標頭檔案
#include
string str=
to_string
(number)
;//string轉number
//需要標頭檔案
#include
//轉整形
int number=
atoi
("1234");
//轉浮點
float number=
atof
("123.123"
);
//需要標頭檔案
#include
//輸入number
int number;
float number1;
scanf
("%d %f"
,&number,
&number1)
;//輸入字元 字串
char c;
scanf
("%c"
,&c)
;char s[10]
;scanf
("%s"
,s);
//輸出
printf
("%d %f"
,number,number1,ch)
;printf
("%s"
,s);
//需要標頭檔案
#include
mapint> mp;
mapint>
::iterator it;
for(it=mp.
begin()
;it!=mp.
end(
);it++
)
//擷取
string str1 = str0.
substr(1
,3);
//擷取母串從下標1開始 長度為3
//替換
str_2.
replace(2
,4,"*");
//從下標2開始 長度為4替換為*
//倒置
reverse
(str.
begin()
,str.
end(
))
//排序
sort
(arr,arr+size,cmp)
詳見:
//全排列 降序
dowhile
(prev_permutation)
//全排列 公升序
dowhile
(next_permutation)
詳見: Linux or unix 常用技巧總結
turbolilnux7.1 1 去掉終端字元顏色顯示 修改在工作目錄下 bashrc中。alias ls ls nf show control chars if you use color ls,comment out above line and uncomment below 2 lines....
C ToString常用技巧總結
tostring是在開發中最常用的操作,其作用是將其它型別以字串型別表示。例如 int i 2 i.tostring 2 object o new object o.tostring 返回物件型別 system.object 但是tostring也並非就這麼簡單。因為tostring實現自objec...
C ToString常用技巧總結
tostring是在開發中最常用的操作,其作用是將其它型別以字串型別表示。例如 int i 2 i.tostring 2 object o new object o.tostring 返回物件型別 system.object 但是tostring也並非就這麼簡單。因為tostring實現自objec...