C Primer (第五版)第一章習題練習

2021-10-10 22:30:02 字數 2216 閱讀 8934

學習筆記所用

1.5

#include

using

namespace std;

intmain()

1.6

//主要錯誤在於後兩行缺少ostream物件

cout <<

" and "

<< v2;

cout <<

" is "

<< vi + v2 << endl;

1.8

//每個 /* 都和之後的第乙個 */ 匹配,如果中間有 /*,中間的/*會被注釋掉。
1.9

#include

using

namespace std;

intmain()

cout <<

"sum = "

<< sum;

return-1

;}

1.10

#include

using

namespace std;

intmain()

cout <<

"sum = "

<< sum;

return-1

;}

1.11

#include

using

namespace std;

intmain()

int sum =

0, val = b;

while

(val >= a)

cout <<

"sum = "

<< sum;

return-1

;}

1.14

//功能可以相互轉換,適用場景有所不同:

//for:一般用於知道迴圈次數,並且for迴圈可以節省記憶體以及**簡潔,在迴圈語句中定義乙個區域性變數,迴圈結束後,區域性變數就被釋放了。

//while: 一般用於不知道或者不確定迴圈的次數,並且通常需要在迴圈之前定義好變數。

1.16

#include

using

namespace std;

intmain()

cout << sum;

return0;

}

1.19

//見1.10,本文是始終第乙個數比第二個數小,能夠處理輸入的第乙個數比第二個數大的情況。
1.21

#include

#include

"sales_item.h"

using

namespace std;

//本題在於怎麼把頭檔案加入到專案中,需要知道自己的ide怎麼新增

intmain()

1.22

#include

#include

"sales_item.h"

using

namespace std;

intmain()

cout << sum;

return0;

}

1.24

#include

#include

"sales_item.h"

using

namespace std;

//本文假設isbn只有兩種

intmain()

else

} cout << s1.

isbn()

<<

" "

isbn()

<<

" "<< sum2;

return0;

}

C Primer第五版 習題答案 第一章

visual c 專案中使用的檔案型別 int main include int main include int main include int main 不合法。錯誤 error c2143 語法錯誤 缺少 在 的前面 修正 移除掉多餘的分號。std cout the sum of v1 an...

c primer第五版學習筆記 第一章

雖然已經學過c 了,但是覺得還是有很多地方不懂,所以就準備好好的將這本書學習完 1.main 函式的返回型別必須為 int,即整數型別。int型別是一種 內建型別,即語言自身定義的型別。2.當return語句包括乙個值時,此 返回值的型別必須與函式的返回型別相容 如main函式的返回型別是 int,...

C primer 第五版學習筆記 第一章

本章介紹c 大部分基礎內容 型別 變數 表示式 語句及函式。在這個過程中,我們會簡單介紹如何編譯及執行程式。首先關於函式的定義,乙個函式包括四個部分 返回型別 return type 函式名 function name 乙個括號包圍的形參列表 parameter list,可以為空 以及函式體 fu...