using system;
class class1
}//trim方法,刪除字串中的空格或其它字元
string stre = stra.trim();
console.writeline ("stre: "+stre);
//使用/顯示引號"和反斜線/
string strf = "c://windows//system32//";
console.writeline ("/"" + strf + "/"");
//使用@顯示引號"和反斜線/
string strg = @"c:/windows/system32/";
console.writeline (@"""" + strg + @"""");
//string轉換為int型
string strh = "12345";
int theint = int.parse (strh);
console.writeline ("科學計數顯示整數",theint);
console.writeline ("十六進製制顯示整數",theint);
//string轉換為float型
string stri = "123.45";
float thefloat = float.parse (stri);
console.writeline ("顯示浮點數,指定小數字數",thefloat);}}
}
整型 字元型和浮點型
1.整型資料型別 c定義了5種整型資料型別。整型資料型別表 序號型別名稱 說明位元組數 取值範圍 1signed char 有符號的單位元組整數型別 1 128 127 2short int 短整型2 32768 32767 3int整型4 2147438648 2147438647 4long i...
C 整型 浮點型與字串型相互轉換
整型 浮點型與字串的相互轉換可以用自帶的函式來實現,本人使用的是vs2015,所以下面有些函式需要改變一下,請看下面的總結。一 整型轉字串型 1.int轉為字串 itoa int value,char buffer,int radix 需改為 itos s int value,char buffer...
C語言基礎 整型 字元型和浮點型
1.整型資料型別 c定義了5種整型資料型別。整型資料型別表 序號型別名稱 說明位元組數 取值範圍 1signed char 有符號的單位元組整數型別 1 128 127 2short int 短整型2 32768 32767 3int整型4 2147438648 2147438647 4long i...