c++primer 第四章编程练习答案】的更多相关文章

4.13.1 #include<iostream> struct students { ]; ]; char grade; int age; }; int main() { using namespace std; students student1; cout << "What is your fistname? "; cin.).get(); cout << "What is your lastname? "; cin.get…
5.9.1 #include<iostream> int main() { using namespace std; ; cout << "input first interger: "; cin >> one; cout << "input second interger: "; cin >> two; for (temp = one; temp <= two; ++temp) sum += tem…
3.7.1 #include<iostream> int main() { using namespace std; ; int height,inch,foot; cout << "please input your height __ inch\b\b\b\b\b\b\b"; cin >> height; inch = height % unit; foot = height / unit; cin.get(); cout << &q…
#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…
6.11.1 #include<iostream> #include<cctype> int main() { using namespace std; char ch; cin.get(ch); while (ch != '@') { if (isdigit(ch)) cout << ch; else if (isupper(ch)) { ch = tolower(ch); cout << ch; } else if (islower(ch)) { ch…
2.7.1 #include<iostream> int main() { using namespace std; ]; ]; cout << "input name :"; cin >> name; cout << "input address:"; cin >> address; cin.get(); cout << "name is " << name;…
术语表 第 4 章 表达式 算术转换(arithmetic conversion): 从一种算术类型转换成另一种算术类型.在二元运算符的上下文中,为了保留精度,算术转换通常把较小的类型转换成较大的类型(例如整型转换成浮点型).    集合律(associativitay): 规定具有相同优先级的运算符如何组合在一起.结合律分为左结合律(运算符从左到右组合)和右集合律(运算符从右到左组合).    二元运算符(binary operator): 有两个运算对象参与运算的运算符.    强制类型转换…
//1.当我们对运算符进行重载的时候,其包括运算对象的类型和返回值的类型都是由该运算符定义的,但是运算对象的个数和优先级,结合律都是不能改变的 //2.当一个对象被用作右值的时候,用的是对象的值(内容).当对象被用作左值的时候,用的是对象的身份(在内存中的位置). //3.复合表达式:是指含有两个或多个运算符的表达式.求复合表达式的值需要首先将运算符和运算对象合理的组合在一起.优先级和结合律决定了运算对象的组合方式. // 括号无视普通的组合规则,在表达式中括号括起来的部分被当做一个单元来求值,…
#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…
代码: /* test.java */ package test; public class test { public static void main(String args[] ) { CPU ccp= new CPU(); HardDisk hhd=new HardDisk(); PC pc =new PC(); ccp.setSpeed(2200); hhd.setAmount(200); pc.setCPU(ccp); pc.setHardDisk(hhd); pc.show();…