C Primer Plus 第3章 資料和C

2021-10-02 11:23:25 字數 3051 閱讀 2544

/*習題1:檢視當前系統整數的上限和下限*/

#include

#include

//int_max,int_min

#include

intmain

(void

)

2147483647,-

2147483648,-

2147483647

1.#inf00e+

000-

1.175493e-040

----

----

----

----

----

----

----

----

process exited after 0.03005 seconds with return value 0

請按任意鍵繼續.

..

/*習題2:編寫乙個程式,要求輸入乙個ascii碼值,然後輸出相應的字元*/

#include

intmain

(void

)

please enter an ascii code:

6565 is the ascii code for a.

----

----

----

----

----

----

----

----

process exited after 1.949 seconds with return value 0

請按任意鍵繼續.

..

/*習題3:編寫乙個程式,發出警報聲,並列印下列文字「stareled by the sudden sound, sally shouted, 「by the great pukin,what was that!」 」*/

#include

intmain

(void

)

stareled by the sudden sound, sally shouted,

" by the great pukin,what was that! "

----

----

----

----

----

----

----

----

process exited after 0.03047 seconds with return value 0

請按任意鍵繼續.

..

/*習題4:編寫乙個程式,讀入乙個浮點數,並分別以小數形式和指數形式列印。*/

#include

intmain

(void

)

please enter a float number:21.29

float style:

21.290001 exp seyle:

2.129000e+001

----

----

----

----

----

----

----

----

process exited after 6.786 seconds with return value 0

請按任意鍵繼續.

..

/習題5

:*一年約有3.156*10

^7s,編寫乙個程式,要求輸入您的年齡,然後顯示該年齡合多少秒。*

/#include

intmain

(void

)

請輸入您的年齡:24

您來到地球已經 757440000.000000 秒.

----

----

----

----

----

----

----

----

process exited after 2.964 seconds with return value 0

請按任意鍵繼續.

..

/*習題6:乙個水分子的質量約3.0*10^-23g,1誇脫水大約有950g。編寫乙個程式,要求輸入水的夸脫數,然後顯示這麼多水中包含多少個水分子。*/

#include

intmain

(void

)

please enter the number of quart: 10.2

10.200000 quarts of warter contain 3.230000e+026 of molucules.

----

----

----

----

----

----

----

----

process exited after 2.718 seconds with return value 0

請按任意鍵繼續.

..

/*習題7:1英吋等於2.54cm。編寫乙個程式,以厘公尺單位輸入您的身高,然後顯示該身高值等於多少英吋。*/

#include

intmain

(void

)

please enter your height in (cm):177

your height in inch is 69.685039.--

----

----

----

----

----

----

----

--process exited after 2.141 seconds with return value 0

請按任意鍵繼續.

..

c primer plus 第3章 處理資料

c 的 基 本 類 型 分 為 兩 組 一 組 由 存 儲 為 整 數 的 值 組 成 另 一 組 由 儲存 為 浮 點 格 式 的 值 組 成 整 型 之 間 通 過 存 儲 值 時 使 用 的 內 存 量 及 有 無 符 號 來 區 分 整 型 從 最小 到 最 大 依 次 是 bool cha...

C Primer Plus 第3章 處理資料

第3章 處理資料 c 提供了內建型別來儲存兩種資料 整數 沒有小數的數字 和浮點數 帶小數的數字 為滿足程式設計師的各種需求,c 為每一種資料都提供了幾個型別。本章將要討論這些型別,包括建立變數和編寫各種型別的常量。另外,還將討論c 是如何處理不同型別之間的隱式和顯式轉換的。1.變數名 1 以兩個下...

C Primer Plus 讀書筆記 第3章

第三章 處理資料 今天完成了該章的閱讀,本章對c 涉及的資料型別做了乙個詳盡的說明 並且對於 c 與 c的細微區別做了說明 總的來所就是 c 相容 c的習慣 但是作者告訴我們為什麼 c 要做出這些改變 細細想想 的卻是有道理 該章中牽涉到了部分c 11 特性,所以要確保編譯器支援這些特性 本人使用 ...