本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版后一修订版 | 前一修订版 | ||
cs:programming:cpp:cpp_primer:answers:chpt_1 [2024/01/14 13:46] – 移除 - 外部编辑 (未知日期) 127.0.0.1 | cs:programming:cpp:cpp_primer:answers:chpt_1 [2024/01/14 13:47] (当前版本) – ↷ 链接因页面移动而自动修正 codinghare | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ======Chapter.1====== | ||
+ | 第一章的习题答案 | ||
+ | ---- | ||
+ | ====Ex.1.1-1.10==== | ||
+ | |||
+ | ==ex.1.1& | ||
+ | > | ||
+ | |||
+ | > | ||
+ | |||
+ | <code cpp> | ||
+ | // | ||
+ | // | ||
+ | //255 意味着返回值超出了指定的范围(0-255) | ||
+ | </ | ||
+ | Ref: | ||
+ | ==ex.1.3== | ||
+ | > | ||
+ | |||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | std::cout << " | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==ex.1.4== | ||
+ | > | ||
+ | |||
+ | <code cpp> | ||
+ | #include < | ||
+ | int a,b = 0; | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | std::cout << "Enter two numbers: "; | ||
+ | std::cin >> a >> b; | ||
+ | std::cout << "The result of " << | ||
+ | a << " multiply with " << | ||
+ | b << " is " << a*b << std::endl; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.5== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int a, b = 0; | ||
+ | std::cout << "Enter two numbers: "; | ||
+ | std::cin >> a >> b; | ||
+ | std::cout << "The result of " ; | ||
+ | std::cout << a << " multiply with " << b; | ||
+ | std::cout << " is "; | ||
+ | std::cout << a*b << std::endl; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.6== | ||
+ | > | ||
+ | **Illegal**. \\ \\ | ||
+ | The semicolons at the end of the first and the second line would cause the fragment to finish in advance, leading the rest of the objects in the fragment to have nowhere to place. Deleting the two semicolons would fix the error. | ||
+ | ==ex.1.7== | ||
+ | > | ||
+ | |||
+ | In the book, the author mentioned: | ||
+ | >A comment that begins with /* ends with the next */. As a result, one comment pair cannot appear inside another. | ||
+ | <code cpp> | ||
+ | /* | ||
+ | * comment pairs /* */ cannot nest. | ||
+ | * '' | ||
+ | * as is the rest of the program | ||
+ | */ | ||
+ | int main() | ||
+ | { | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | errors when compling: | ||
+ | <code bsh> | ||
+ | ex_1_7.cpp: | ||
+ | * '' | ||
+ | | ||
+ | ex_1_7.cpp: | ||
+ | * '' | ||
+ | </ | ||
+ | ==ex.1.8== | ||
+ | > | ||
+ | <code cpp> | ||
+ | std::cout << "/ | ||
+ | std::cout << " | ||
+ | std::cout << /* " | ||
+ | std::cout << /* " | ||
+ | </ | ||
+ | >After you’ve predicted what will happen, test your answers by compiling a program with each of these statements. Correct any errors you encounter. | ||
+ | |||
+ | //Fix for the third segment:// | ||
+ | <code cpp> | ||
+ | std::cout << /* " | ||
+ | </ | ||
+ | ==ex.1.9== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int sum = 0; | ||
+ | int val = 50; | ||
+ | while (val <= 100) { | ||
+ | sum += val; | ||
+ | val++; | ||
+ | } | ||
+ | std::cout << "The result of summation from 50 to 100 is: "; | ||
+ | std::cout << sum; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.10== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int count = 10; | ||
+ | while(count > -1) { | ||
+ | std::cout << count-- << std::endl; | ||
+ | } | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ====Ex.1.11-1.20==== | ||
+ | ==ex.1.11== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int small, large = 0; | ||
+ | std::cout << " | ||
+ | std::cin >> small >> large; | ||
+ | |||
+ | //swap the small val and large val if small val is greater | ||
+ | if(small > large) { | ||
+ | int temp = 0; | ||
+ | temp = small; | ||
+ | small = large; | ||
+ | large = temp; | ||
+ | } | ||
+ | |||
+ | while (small <= large) { | ||
+ | std::cout << large << std::endl; | ||
+ | large --; | ||
+ | } | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.12== | ||
+ | > | ||
+ | <code cpp> | ||
+ | int sum = 0; | ||
+ | for (int i = -100; i <= 100; ++i) | ||
+ | sum += i; | ||
+ | </ | ||
+ | The for loop is summing the number from <color # | ||
+ | ==ex.1.13== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | //Ex.1.9 rewrite | ||
+ | int sum_19 = 0; | ||
+ | for (int i = 50; i <= 100; ++i) { | ||
+ | sum_19 += i; | ||
+ | } | ||
+ | std::cout << " | ||
+ | //Ex.1.10 rewrite | ||
+ | std::cout << " | ||
+ | for(int j = 10; j >= 0; --j) { | ||
+ | std::cout << j << std::endl; | ||
+ | } | ||
+ | //Ex.1.11 rewrite | ||
+ | int small, large = 0; | ||
+ | std::cout << "Enter two numbers to specify the range:" | ||
+ | std::cin >> small >> large; | ||
+ | |||
+ | if(small > large) { | ||
+ | int temp = small; | ||
+ | small = large; | ||
+ | large = temp; | ||
+ | } | ||
+ | for(int i = (large - small); i >= 0; --i) { | ||
+ | std::cout << large-- << std::endl; | ||
+ | } | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.14== | ||
+ | > | ||
+ | a good answer for the question: | ||
+ | >The main difference between the for's and the while' | ||
+ | [[https:// | ||
+ | ==ex.1.15== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | //syntax error | ||
+ | std::cout << "hello world" << std::endl // missing semicolon | ||
+ | std::cout << hello world << std::endl; // missing quote | ||
+ | |||
+ | //type error | ||
+ | int i = " | ||
+ | |||
+ | // | ||
+ | std::cout << j << std::endl; // val " | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.16== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int sum = 0; | ||
+ | int num = 0; | ||
+ | while (std::cin >> num) { | ||
+ | sum += num; | ||
+ | } | ||
+ | std::cout << " | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.17== | ||
+ | > | ||
+ | * If all the input values are equal, the program will not end until the input reaches the end of the file. It will print the occur times once the program ends. | ||
+ | * If all the input values are different, the program will print " | ||
+ | ==ex.1.18== | ||
+ | > | ||
+ | < | ||
+ | /*The all-equal inputs sequence*/ | ||
+ | 1 | ||
+ | 1 | ||
+ | 1 | ||
+ | /*The no repeat inputs sequence*/ | ||
+ | 1 | ||
+ | 2 | ||
+ | The number 1 occurs: 1 times. | ||
+ | 3 | ||
+ | The number 2 occurs: 1 times. | ||
+ | 4 | ||
+ | The number 3 occurs: 1 times. | ||
+ | 5 | ||
+ | The number 4 occurs: 1 times. | ||
+ | 6 | ||
+ | The number 5 occurs: 1 times. | ||
+ | </ | ||
+ | ==ex.1.19== | ||
+ | > | ||
+ | See [[cs: | ||
+ | ==ex.1.20== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include " | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | Sales_item item; | ||
+ | while (std::cin >> item) { | ||
+ | std::cout << item << std::endl; | ||
+ | } | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ====Ex.1.21-1.25==== | ||
+ | ==ex.1.21== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include " | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | Sales_item item1, item2; | ||
+ | std::cout << "Enter two Sales items: " << std::endl; | ||
+ | std::cin >> item1 >> item2; | ||
+ | |||
+ | if (item1.isbn() == item2.isbn()) { | ||
+ | std::cout << item1 + item2 << std::endl; | ||
+ | return 0; | ||
+ | } | ||
+ | else { | ||
+ | std::cerr << "The two items must have same ISBN" << std::endl; | ||
+ | return -1; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.22== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include " | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | Sales_item total; | ||
+ | if(std:: | ||
+ | Sales_item curritem; | ||
+ | |||
+ | while (std::cin >> curritem) { | ||
+ | |||
+ | if (curritem.isbn() == total.isbn()) { | ||
+ | total += curritem; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | std::cout << total << std::endl; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.23== | ||
+ | > | ||
+ | |||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include " | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int totalCnt = 1; | ||
+ | Sales_item item; | ||
+ | |||
+ | if(std:: | ||
+ | Sales_item currItem; | ||
+ | |||
+ | while(std:: | ||
+ | if(item.isbn() == currItem.isbn()) { | ||
+ | totalCnt++; | ||
+ | } | ||
+ | else { | ||
+ | std:: | ||
+ | totalCnt = 1; | ||
+ | item = currItem; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.1.24== | ||
+ | > | ||
+ | < | ||
+ | 00-11 5 5.0 | ||
+ | 00-11 5 5.0 | ||
+ | 00-22 5 5.0 | ||
+ | 00-11 Occurs 2 times. | ||
+ | 00-33 5 5.0 | ||
+ | 00-22 Occurs 1 times. | ||
+ | 00-44 5 5.0 | ||
+ | 00-33 Occurs 1 times. | ||
+ | </ | ||
+ | ==ex.1.25== | ||
+ | > | ||
+ | < | ||
+ | /*a couple of same inputs*/ | ||
+ | 00-11 5 5.0 | ||
+ | 00-11 5 6.0 | ||
+ | 00-11 5 7.0 | ||
+ | 00-11 15 90 6 | ||
+ | /*servral different inputs*/ | ||
+ | 00-11 5 5.0 | ||
+ | 00-22 5 6.0 | ||
+ | 00-11 5 25 5 | ||
+ | 00-33 5 7.0 | ||
+ | 00-22 5 30 6 | ||
+ | 00-33 5 35 7 | ||
+ | /*no inputs*/ | ||
+ | No data?! | ||
+ | </ | ||