C++primer Ch1

本章主要工作是编写了一个书店程序,关于语句块,main函数等非常基础的知识不会再提。我使用的IDE是code:blocks,由于VS2010不支持C++11就没有用VS。书中的命令行运行程序即在cmd中运行,大家可以自己尝试,本文不作示范。

知识点1

  • 首先要认识的iostream库,库内包含两个基础类型istream(输入流)和ostream(输出流)。
  • 标准库定义4个IO对象,cin(标准输入), cout(标准输出), cerr(输出警告或错误), clog(输出程序运行时的信息),>> 输入运算符,<<输出运算符,分别对流进行输入输出操作。
  • 没有using namespace std;时,使用命名空间内的名字必须用std::(如std::cout)

习题1

1.1 (略)
1.2 运行后显示process returned -1
1.3

#include<iostream>
int main()
{
    std::cout <<" Hello, world." << std::endl;
    return 0;
}

1.4

#include<iostream>
int main()
{
    std::cout << "Enter two numbers:" << std::endl;
    int v1 = 0, v2 = 0;
    std::cin >> v1 >> v2;
    std::cout << "The product of " << v1 << " and " << v2
              << "is " << v1 * v2 <<std::endl;
    return 0;
}

1.5

#include<iostream>
int main()
{
    std::cout << "Enter two numbers:" ;
    std::cout << std::endl;
    int v1 = 0, v2 = 0;
    std::cin >> v1 >> v2;
    std::cout << "The sum of " ;
    std::cout << v1 ;
    std::cout << " and ";
    std::cout << v2 ;
    std::cout << " is " ;
    std::cout << v1 + v2 ;
    std::cout << std::endl;
    return 0;
}

1.6 不合法,去掉中间的分号,后者后两句最前面加std::cout

知识点2

  • 注释,同C //单行 /* /多行,注意:注释是不能嵌套的

习题2

1.7 自己试一下,应该都会有这句
warning: "/" within comment [-Wcomment]|
1.8 第一个和第二个合法,后两个均不合法,第三个最后加一个 " 就可以打印
/,第四个是<<后面全被注释掉

知识点3

  • while循环:while(condition){ statement }
  • for循环:for(初始化计数变量;判断条件;++), 通常都用前++形式防止出错
  • 读取不定量数据常用while(cin >> val),输入ctrl+z可终止输入
  • if语句,和C中if基本相同

习题3

1.9

#include<iostream>

int main()
{
    int sum = 0, val = 50;
    while(val <= 100)
    {
        sum += val;
        val++;
    }
    std::cout << "The sum of 50 to 100 is " << sum
              << std::endl;

    return 0;
}

1.10

#include<iostream>

int main()
{
    int i = 10;
    while(i >= 0)
    {
        std::cout << i-- << " ";
    }

    return 0;
}

1.11

#include<iostream>

int main()
{
    int i, j;
    std::cout << "Enter two numbers:" << std::endl;
    std::cin >> i >> j;
    std::cout << "The numbers between " << i << " and "
              << j << "is ";
    while(i < j)
    {
        std::cout << i << " ";
        i++;
    }
    while(i > j)
    {
        std::cout << j << " ";
        j++;
    }
    return 0;

}

1.12 从-100一直加到100 sum的终值是0
1.13

#include<iostream>
int main()
{
    //50到100相加
    int sum = 0;
    int v1, v2;

    for(int i = 50; i <= 100; ++i)
        sum += i;
    std::cout << "Sum of 50 to 100 inclusive is "
              << sum << std::endl;
    //输出10到0
    for(int i = 10; i >= 0; i--)
        std::cout << i << " ";
    std::cout << std::endl;
    //输出两个整数范围内所有整数
    std::cout << "Enter two numbers: " << std::endl;
    std::cin >> v1 >> v2;
    for(v1; v1 < v2; v1++)
        std::cout << v1 << " ";
    for(v2; v2 < v1; v2++ )
        std::cout << v2 << " ";

    return 0;
}

1.14 for循环指定次数,while循环可不固定次数
1.15 14页指出了语法错误,声明错误,类型错误。
1.16

#include<iostream>
int main()
{
    int sum = 0, value = 0;
    while(std::cin >> value)
        sum += value;
    std::cout << "Sum is: " << sum << std::endl;

    return 0;
}

1.17 输出结果为输入的同样的数出现了多少次,例如都是1的话
1 occurs 7 times
1.18

#include<iostream>

int main()
{
    int currVal = 0, val = 0;
    if (std::cin >> currVal){
        int cnt = 1;
        while (std::cin >> val){
            if (val == currVal)
                ++cnt;
            else{
                std::cout << currVal << " occurs "
                          << cnt << "times" <<std::endl;
                currVal = val;
                cnt = 1;

            }
        }//while
        std::cout << currVal << " occurs "
                  <<cnt << " times " << std::endl;
    }//if

    return 0;
}

1.19

#include<iostream>

int main()
{
    int i, j;
    std::cout << "Enter two numbers:" << std::endl;
    std::cin >> i >> j;
    std::cout << "The numbers between " << i << " and "
              << j << "is ";
    if (i < j){

        while(i <= j)
        {
            std::cout << i << " ";
            i++;
        }
    }
    else{
        while(i >= j)
        {
            std::cout << j << " ";
            j++;
        }
    }
    return 0;

}

知识点4

  • 类,定义了一个数据结构和与其关联的一组操作。类类型是面向对象程序语言一个的特征
  • 成员函数(类中的函数),通过点运算符访问。

习题4

Sales_item.h


#ifndef SALESITEM_H
#define SALESITEM_H
#include <iostream>
#include <string>
class Sales_item
{
public:
    Sales_item(const std::string &book):isbn(book),units_sold(0),revenue(0.0){}
    Sales_item(std::istream &is){ is >> *this;}
    friend std::istream& operator>>(std::istream &,Sales_item &);
    friend std::ostream& operator<<(std::ostream &,const Sales_item &);
public:
    Sales_item & operator+=(const Sales_item&);
public:
    double avg_price() const;
    bool same_isbn(const Sales_item &rhs)const
    {
        return isbn == rhs.isbn;
    }
    Sales_item():units_sold(0),revenue(0.0){}
public:
    std::string isbn;
    unsigned units_sold;
    double revenue;
};

using std::istream;
using std::ostream;
Sales_item operator+(const Sales_item &,const Sales_item &);
inline bool operator==(const Sales_item &lhs,const Sales_item &rhs)
{
    return lhs.units_sold == rhs.units_sold && lhs.revenue == rhs.revenue && lhs.same_isbn(rhs);
}
inline bool operator!=(const Sales_item &lhs,const Sales_item &rhs)
{
    return !(lhs == rhs);
}

inline Sales_item & Sales_item::operator +=(const Sales_item &rhs)
{
    units_sold += rhs.units_sold;
    revenue += rhs.revenue;
    return *this;
}
inline Sales_item operator+(const Sales_item &lhs,const Sales_item &rhs)
{
    Sales_item ret(lhs);
    ret += rhs;
    return ret;
}
inline istream& operator>>(istream &in,Sales_item &s)
{
    double price;
    in >> s.isbn >> s.units_sold >> price;
    if(in)
        s.revenue = s.units_sold * price;
    else
        s = Sales_item();
    return in;
}
inline ostream& operator<<(ostream &out,const Sales_item &s)
{
    out << s.isbn << "\t" <<s.units_sold << "\t" << s.revenue << "\t" << s.avg_price();
    return out;
}
inline double Sales_item::avg_price() const
{
    if(units_sold)
        return revenue/units_sold;
    else
        return 0;
}
#endif

1.20

#include<iostream>
#include"Sales_item.h"
int main()
{
    Sales_item book;
    while(std::cin >> book){
            std::cout << book << std::endl;
    }


    return 0;
}

1.21

#include<stdio.h>
#include"Sales_item.h"

int main()
{
    Sales_item book1, book2;
    std::cin >> book1 >> book2;
    if(book1.isbn == book2.isbn)
        std::cout << book1 + book2 << std::endl;
    else
        std::cout << "False input!";

    return 0;
}

1.22

#include<stdio.h>
#include"Sales_item.h"
int main()
{
    Sales_item book, total;
    std::cin >> total;
    while(std::cin >> book && (total.isbn == book.isbn))
    {
        total += book;
    }                                                   //不太懂两次ctrl+z才可退出
    std::cout << total << std::endl;

    return 0;
}

1.23,24

#include<stdio.h>
#include"Sales_item.h"
int main()
{
    Sales_item currbook, book;
    if (std::cin >> currbook){
        int cnt = 1;
        while(std::cin >> book){
            if (currbook.isbn == book.isbn)
                cnt++;
            else{
                std::cout << currbook.isbn << " has sold " <<cnt
                          << "times" << std::endl;
                currbook = book;
                cnt = 1;
            }
        }
        std::cout << currbook.isbn << " has sold " <<cnt
                          << "times" << std::endl;
    }

    return 0;
}

1.25

#include<iostream>
#include"Sales_item.h"
int main()
{
    Sales_item total;

    if(std::cin >> total){
        Sales_item trans;
        while(std::cin >> trans){
            if(total.isbn == trans.isbn)
                total += trans;
            else{
                std::cout << total << std::endl;
                total = trans;
            }
        }
        std::cout << total << std::endl;
    }
    else{
            std::cerr << "No data!" << std::endl;
            return -1;
    }

    return 0;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,076评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,658评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,732评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,493评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,591评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,598评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,601评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,348评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,797评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,114评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,278评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,953评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,585评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,202评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,180评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,139评论 2 352

推荐阅读更多精彩内容