2010年8月27日 星期五

Visual C++學習心得

很高興我又再次重回Visual C++的懷抱,如今過了3個多月,我依舊停留在資料輸出與輸入的部分上,但是我覺得要先把資料型態複習一遍才是比較重要的,基礎要打穩才可以。

主要資料型態:

Integer部分:

1. char  1bytes  -2^8~2^8-1
2. short  2bytes  -2^16~2^16-1
3. int  4bytes  -2^32~2^32-1
4. long  8bytes  -2^64~2^64-1

Float部分:

1. float 4bytes 因為小數點以下的精準度只到7位,固範圍為:  -3.402823e38~3.402823e38-1
2. double  8bytes 同理,範圍為: -1.79769313486232e308~1.79769313486232e308-1

接下來的就不講了,有char的字元型別及Bool。總之,要學的還很多呢!

沒有留言:

張貼留言