C++Primer Plus(第六版)编程练习|第四章

本篇博客主要介绍了C++中关于复合类型的编程练习,包括使用char数组和string对象组合名字、创建和初始化CandyBar结构体,以及处理比萨饼信息和40码跑成绩的结构化数据操作。
摘要由CSDN通过智能技术生成

第四章 复合类型

1、编写一个C++程序,如下述输出示例所示的那样请求并显示信息:

What is your first name?Betty Sue

What is your last name? Yewe

What letter grade do you deserve?B

What is your age?22

Name:Yewe,BettySue

Grade:C

Age:22

注意,该程序应该接受的名字包含多个单词。另外,程序将向下调整成绩,即向上调一个字母。假设用户请求A、B或C,所以不必担心D和F之间的空档。

//getline 整行捕获直到遇到回车键为止
#include<iostream>
using namespace std;
int main()
{
    const int size=20;
    char first_name[size],last_name[size];
    char grade;
    int age;
    cout<<"What is your first name?";
    cin.getline(first_name,size);
    cout<<"What is your last name?";
    cin.getline(last_name,size);
    cout<<"What letter grade dou you deserver?";
    cin>>grade;
    cout<<"What is your age?";
    cin>>age;
    cout<<"Name: "<<last_name<<","<<first_name<<endl;
    cout<<"Grade: "<<char(grade+1)<<endl;//grade+1输出ASCII码值,char强制转换对应字母 
    cout<<"Age: "<<age<<endl;
    return 0;
     
}

2、修改程序清单4.4,使用C++ string类而不是char数组。

//程序清单 4.4

#include<iostream>

int main()

{

usingnamespace std;

constint ArSize=20;

charname[ArSize];

chardessert[ArSize];

cout<<"Enteryour name:\n";

cin.getline(name,ArSize);//readthrough newline

cout<<"Enteryour favorite dessert:\n";

cin.getline(dessert,ArSize);

cout<<"Ihave some delicious"<<dessert;

cout<<"foryou, "<<name<<".\n";

return0;

}

#include<iostrea
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值