- 1、本文档共119页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
必威体育精装版C程式语言习题解答
必威体育精装版C++程式語言習題解答
第1章
第2章
第3章
第4章
第5章
第6章
第7章
第8章
第9章
第10章
第11章
第12章
第13章
第14章
第15章
第16章
第1章
[學習評量]
1.(a)
2.(b)
3.(c)
4.(c)
5.(b)
6.(d)
7.(a)
8.(c)
9.(d)
10.(c)
第2章
[學習評量]
1.(b)
2.(b)
3.(c)
4.(a)
5.(b)
6.(c)
7.(b)
8.(d)
9.cpp
10.main()函式
[程式練習]
1.
#程
#includeiostream
int main()
{
std::cout 春眠不覺曉, 處處聞啼鳥 endl
夜來風雨聲, 花落知多少;
}
###
2.
(1)程式第 5 行:
std::cout //我要列印的訊息測試一下
修正方式一,將註解移到要輸出的字串後:
std::cout 測試一下 //我要列印的訊息
修正方式二,將註解改用區塊式註解:
std::cout /*我要列印的訊息*/測試一下
(2)第6行:endl之前要加std::。
3.
#程
#includeiostream
int main()
{
std::cout * endl
* * endl
* * * endl
* * * * endl
* * * * *;
}
###
4.
(1)第3行:main()函式名稱不可大寫。
(2)第5行:endl之前要加std::。
(3)第5行:敘述之後要加分號。
5.
第二行的 use 要改成 using。
第3章
[學習評量]
1.(c)
2.(c)
3.可以;不可
4.typedef
5.2;1;8
6.(d)
7.(b)
8.(d)
9.(d)
10.(a)
[程式練習]
1.
#includeiostream
#define SIZE 100
int main()
{
std::cout SIZE = SIZE std::endl;
}
2.
#includeiostream
using namespace std;
int main()
{
int a = 10;
float b = 101.7;
char c = c;
std::cout a = a endl
b = b endl
c = c;
}
3.
#includeiostream
int main()
{
const int width = 12;
const int height= 35;
std::cout 寬為 width 高為 height
的矩形面積為 width * height;
}
4.
#includeiostream
int main()
{
std::cout 3 + 2 = 3 + 2;
}
5.
#includeiostream
int main()
{
std::cout 若 f = 1*2*3*4*5, 則 f =
1*2*3*4*5;
}
6.
#includeiostream
using namespace std;
int main()
{
int x;
cout 計算 y=2*x endl
請輸入 x 的值:;
cin x;
cout y = 2*x;
}
7.
#includeiostream
int main()
{
char c = \;
int i = c; // 將 c 所存的字碼值指定給整數變數 i
std::cout c 的 ASCII 碼為 i;
}
8.
#includeiostream
int main()
{
std::cout 我正在學習 \C++\ 程式語言;
}
9.
#include iostream
using namespace std;
int main()
{
int a=10, b=20
文档评论(0)