watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvZ3V1Z2xlMjAxMA==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt=""> 1. 代码 #include<iostream> int main() { using namespace std; int num1; int num2; int total…
1.编写一个 c++ 程序,如下述输出示例所示的那样请求并显示信息 : What is your first name? Betty SueWhat is your last name? YeweWhat letter grade do you deserve? BWhat is your age? 22Name : Yewe, Betty SueGrade : CAge: 22 #include<iostream> using namespace std; void main() { ],…
#include <iostream> #include <cctype> using namespace std; int main() { char in_put; do { cout << "Please enter the letters (enter @ exit):"; cin >> in_put; if (islower(in_put)) cout << "The uppercase of the le…
#include <iostream> using namespace std; int main() { ; cout << "Please enter two number: "; cin >> num_1; cin >> num_2; if (num_1 > num_2) { int a; a = num_1; num_1 = num_2; num_2 = a; } for (int i = num_1; i <= nu…
#include<iostream> #include<string> using namespace std; int main() { string first_name; string last_name; char grade; int age; cout << "What is your first name? "; getline(cin,first_name); cout << endl << "Wha…
#include<iostream> using namespace std; int main() { ; int shen_gao; cout <<"Please enter your leight in inches:____\b\b\b"; cin >> shen_gao; cout << "It is contains: " << shen_gao / unit << " f…
#include<iostream> using namespace std; int main() { cout << "My name is Jiantong Chen." << endl << "I'm a student in the Xi'an University."; cin.get(); ; } #include<iostream> using namespace std; int main…
练习3.1 #include <iostream> using namespace std; int main() { int sum = 0, val = 50; while (val <= 100) { sum += val; ++val; } cout << "Sum of 50 to 100 inclusive is " << sum << std::endl; return 0; } #include <iostre…
练习2.1 C++ 语言规定short 和 int 至少 16 位, long 至少32位, long long 至少64位.带符号类型可以表示整数.负数或0, 无符号类型则仅能表示大于等于0的值The C and C++ standards do not specify the representation of float, double and long double. It is possible that all three implemented as IEEE double-pre…
练习1.9 #include <iostream> int main() { int sum = 0, val = 50; while (val <= 100) { sum += val; ++val; } std::cout << "Sum of 50 to 100 inclusive is " << sum << std::endl; return 0; } 练习1.10 #include <iostream> in…
C++ Primer中文版(第5版)(顶级畅销书重磅升级全面采用最新 C++ 11标准) [美]Stanley B. Lippman( 斯坦利李普曼) Josee Lajoie(约瑟拉乔伊 ) Barbara E. Moo (芭芭拉默) 著 王刚 杨巨峰译 ISBN 978-7-121-15535-2 2013年9月出版 定价:128.00元 864页 16开 编辑推荐 C++领域权威 潘爱民|孟岩作序,代表技术圈鼎力推荐 一线C++工程师腾讯Milo.微软刘未鹏|陈梓瀚.阿里李云|侯凤…
C++ Primer 第五版课后题 练习6.32 :下面的函数合法吗?如果合法,说明其功能:如果不合法,修改其中的错误并解释原因. #include <iostream> using namespace std; int &get(int *arry, int index) { return arry[index]; } int main() { int ia[10]; for (int i = 0; i != 10; ++i) get(ia, i) = i; return 0; }…
写在前面: 算法和数据结构是计算机学习的基础,而大部分书籍是用C/C++编写.所以有了把C语言重新学一遍的想法.这个系列主要是记录看C primer plus的一些笔记和部分课后习题的答案,不会总结的很系统,只是一些自己的思考.加油!!! 这一章没有讲有关C语言的知识,主要讲了C语言的起源,C语言的特性,C语言在行业里的发展等. 其中,1.4节,1.5节,1.6节,1.7节对于计算机小白要反复研读. to be continued...…