C++ Primer 学习笔记_2_高速入口(继续)



P15习题

  1. //题1.14: 试分析假设v1 == v2的情况下,该程序的输出结果
  2. #include <iostream>
  3. int main()
  4. {
  5. std::cout << "Enter two numbers:" << std::endl;
  6. int v1,v2;
  7. std::cin >> v1 >> v2;
  8. int lower,upper;
  9. if (v1 <= v2)
  10. {
  11. lower = v1;
  12. upper = v2;
  13. }
  14. else
  15. {
  16. lower = v2;
  17. upper = v1;
  18. }
  19. int sum = 0;
  20. for (int i = lower; i <= upper; ++i)
  21. {
  22. sum += i;
  23. }
  24. std::cout << "Sum of " << lower
  25. << " to " << upper
  26. << " inclusive is "
  27. << sum << std::endl;
  28. return 0;
  29. }
//题1.14: 试分析假设v1 == v2的情况下,该程序的输出结果
#include <iostream> int main()
{
std::cout << "Enter two numbers:" << std::endl;
int v1,v2;
std::cin >> v1 >> v2; int lower,upper;
if (v1 <= v2)
{
lower = v1;
upper = v2;
}
else
{
lower = v2;
upper = v1;
} int sum = 0;
for (int i = lower; i <= upper; ++i)
{
sum += i;
} std::cout << "Sum of " << lower
<< " to " << upper
<< " inclusive is "
<< sum << std::endl; return 0;
}
  1. //1.16
  2. #include <iostream>
  3. int main()
  4. {
  5. std::cout << "Please input a sequence of numbers:" << std::endl;
  6. int val;
  7. int count = 0;
  8. //为推断条件,先运行输入操作
  9. while (std::cin >> val)
  10. {
  11. if (val < 0)
  12. {
  13. ++ count;
  14. }
  15. }
  16. std::cout << "There is " << count << " negatives" << std::endl;
  17. return 0;
  18. }
//1.16
#include <iostream> int main()
{
std::cout << "Please input a sequence of numbers:" << std::endl;
int val;
int count = 0;
//为推断条件。先运行输入操作
while (std::cin >> val)
{
if (val < 0)
{
++ count;
}
} std::cout << "There is " << count << " negatives" << std::endl;
return 0;
}
  1. //题1.19
  2. #include <iostream>
  3. int main()
  4. {
  5. std::cout << "Please input two numbers:" << std::endl;
  6. int v1,v2;
  7. int count = 1;
  8. std::cin >> v1 >> v2;
  9. for (int i = v1 ; i <= v2; ++i)
  10. {
  11. std::cout << i << ' ';
  12. if (count % 10 == 0)
  13. {
  14. std::cout << std::endl;
  15. }
  16. ++ count;
  17. }
  18. return 0;
  19. }
//题1.19
#include <iostream> int main()
{
std::cout << "Please input two numbers:" << std::endl;
int v1,v2;
int count = 1;
std::cin >> v1 >> v2;
for (int i = v1 ; i <= v2; ++i)
{
std::cout << i << ' ';
if (count % 10 == 0)
{
std::cout << std::endl;
}
++ count;
} return 0;
}

五、类的简单介绍

1、C++中,我们通过定义类来定义自己的数据结构

实际上,C++设计的主要焦点就是使所定义的类类型的行为能够像内置类型一样自然!!。

2、使用类的时候,我们不须要指定哦啊这个类是如何实现的。相反。我们须要知道的是:这个类可以提供什么样的操作!

3、对于自己定义的类,必须使得编译器能够訪问和类相关的定义。

4、通常文件名称和定义在头文件里的类名是一样的。

通常后缀名是.h,可是有些IDE会挑剔头文件的后缀名!

5、当使用自己定义头文件时。我们採用双引號(””)把头文件包括进来。

6、当调用成员函数的时候,(通常)指定函数要操作的对象。语法是使用点操作符(”.”),左操作符必须是类类型,右操作符必须指定该类型的成员。

P19

  1. //习题1.21
  2. #include <iostream>
  3. #include <fstream>
  4. #include "Sales_item.h"
  5. int main()
  6. {
  7. freopen("book_sales","r",stdin);
  8. Sales_item item;
  9. while (std::cin >> item)
  10. {
  11. std::cout << item << std::endl;
  12. }
  13. return 0;
  14. }
//习题1.21
#include <iostream>
#include <fstream>
#include "Sales_item.h" int main()
{
freopen("book_sales","r",stdin);
Sales_item item;
while (std::cin >> item)
{
std::cout << item << std::endl;
} return 0;
}
  1. //习题1.22
  2. #include <iostream>
  3. #include <fstream>
  4. #include "Sales_item.h"
  5. int main()
  6. {
  7. freopen("book_sales","r",stdin);
  8. Sales_item item1;
  9. Sales_item item2;
  10. while (std::cin >> item1 >> item2)
  11. {
  12. if (item1.same_isbn(item2))
  13. {
  14. std::cout << item1 + item2 << std::endl;
  15. }
  16. }
  17. return 0;
  18. }
//习题1.22
#include <iostream>
#include <fstream>
#include "Sales_item.h" int main()
{
freopen("book_sales","r",stdin);
Sales_item item1;
Sales_item item2;
while (std::cin >> item1 >> item2)
{
if (item1.same_isbn(item2))
{
std::cout << item1 + item2 << std::endl;
}
} return 0;
}

六、C++程序

  1. #include <iostream>
  2. #include <fstream>
  3. #include "Sales_item.h"
  4. int main()
  5. {
  6. //freopen("book_sales.","r",stdin);
  7. Sales_item total,trans;
  8. if (std::cin >> total)
  9. {
  10. while (std::cin >> trans)
  11. {
  12. if (total.same_isbn(trans))
  13. {
  14. total += trans;
  15. }
  16. else
  17. {
  18. std::cout << total << std::endl;
  19. total = trans;
  20. }
  21. }
  22. std::cout << total << std::endl;
  23. }
  24. else
  25. {
  26. std::cout << "No Data?

    !" << std::endl;

  27. return -1;
  28. }
  29. return 0;
  30. }
#include <iostream>
#include <fstream>
#include "Sales_item.h" int main()
{
//freopen("book_sales.","r",stdin); Sales_item total,trans; if (std::cin >> total)
{
while (std::cin >> trans)
{
if (total.same_isbn(trans))
{
total += trans;
}
else
{
std::cout << total << std::endl;
total = trans;
}
}
std::cout << total << std::endl;
}
else
{
std::cout << "No Data? !" << std::endl;
return -1;
}
return 0;
}

【说明:Sales_item类需要图灵网站下载及参考:http://www.ituring.com.cn/book/656

上一篇:ASP.NET Core 依赖注入


下一篇:redis-cluster 单个节点不可用