《C Primer Plus 》第六版 习题 第四章

文章目录

  • 【4.8.1】
  • 【4.8.2】
  • 【4.8.3】
  • 【4.8.4】
  • 【4.8.5】
  • 【4.8.6】
  • 【4.8.7】
  • 【4.8.8】

【4.8.1】

/**编写一个程序,提示用户输入名和姓,然后以“名,姓”的格式打印出来**/

#include 

int main()
    {
        char last_name[20];
        char first_name[20];
     	printf("\n请输入您的姓氏:\n");
     	scanf("%s",first_name);

     	printf("\n请输入您的名字:\n");
     	scanf("%s",last_name);

     	printf("\n您的名字为:%s,%s",last_name ,first_name);

        return 0;
    }

《C Primer Plus 》第六版 习题 第四章_第1张图片

【4.8.2】

/**
***编写一个程序,提示用户输入名和姓,并执行以下操作:
***
** a.打印名和姓,包括双引号;
** b.在宽度为20的字段右端打印名和姓,包括双引号;
** c.在宽度为20的字段左端打印名和姓,包括双引号;
** d.在比姓名宽度宽3的字段中打印名和姓;
***
**/

#include 
#include 

int main ()
    {
        char first_name[20];        //姓氏
        char name[20];              //名字
        int width;                  //字符宽度

        printf("\n\t请输入您的姓氏:");
        scanf("%s",first_name);

        printf("\n\t请输入您的名字:");
        scanf("%s",name);

        printf("\n\t\"%s,%s\"\n\n",name,first_name);     //a.打印名和姓,包括双引号;
        printf("\n\t\"%10s%10s\"\n\n",name,first_name);  //b.在宽度为20的字段右端打印名和姓,包括双引号;
        printf("\n\t\"%-10s%-10s\"\n\n",name,first_name);//c.在宽度为20的字段左端打印名和姓,包括双引号;

        width = strlen(first_name) + 3;
        printf("\n\t%*s%s\n\n",width,first_name,name);   //d.在比姓名宽度宽3的字段中打印名和姓;


            return 0;

    }

《C Primer Plus 》第六版 习题 第四章_第2张图片

【4.8.3】

/**
***编写一个程序,读取一个浮点数,首先以小数点记数法打印,然后以指数记数法打印。
***用下面的格式进行输出(系统不同,指数记数法限时的位数可能不同):
***a.This input is 21.3 or 2.1e+001.
***b.This input is +21.290 or 2.129E+001.
**/

#include 

int main()
    {
        float i;
        printf("请输入一个浮点数:21.29\n");
        scanf("%f",&i);

        printf("\nThis input is %.1f or %.1e .\t",i,i);
        printf("编译器对浮点数进行四舍五入。\n\n");

        printf("This input is %+2.3f or %.3E .\t",i,i);
        printf("编译器没有对浮点数进行四舍五入。\n\n");

            return 0;

    }

《C Primer Plus 》第六版 习题 第四章_第3张图片

【4.8.4】

/**
***编写一个程序,提示用户输入身高(单位:英寸)和姓名,然后一下面的格式显示用户输入的信息:
***     Name,you are x.xxx feet tall
***使用float类型,并用/作为除号。
***如果你愿意,可以要求用户以厘米为单位输入身高,并以米为单位显示出来。
**/

#include 

int main()
    {
        system("color 0A");
        float tall;             //身高(cm)
        char name[20];          //名字

        printf("\n\tPlease tell me your name:");
        scanf("%s",name);

        printf("\n\tPlease tell me your height(cm):");
        scanf("%f",&tall);

        printf("\n\t%s,you are %1.3f meter tall.\n\n",name ,tall/100);

            return 0;


    }

《C Primer Plus 》第六版 习题 第四章_第4张图片

【4.8.5】

/**
***编写一个程序,提示用户输入身高(单位:英寸)和姓名,
***然后一下面的格式显示用户输入的信息:
***     Name,you are x.xxx feet tall
***使用float类型,并用/作为除号。
***如果你愿意,可以要求用户以厘米为单位输入身高,并以米为单位显示出来。
**/

#include 

int main()
    {
        system("color 0A");
        float tall;             //身高(cm)
        char name[20];          //名字

        printf("\n\tPlease tell me your name:");
        scanf("%s",name);

        printf("\n\tPlease tell me your height(cm):");
        scanf("%f",&tall);

        printf("\n\t%s,you are %1.3f meter tall.\n\n",name ,tall/100);

            return 0;


    }

《C Primer Plus 》第六版 习题 第四章_第5张图片

【4.8.6】

/**
***编写一个程序,先提示用户输入名,然后提示用户输入姓。
***在一行打印用户输入的名和姓,下一行分别打印名和姓的字母数。
***字母数要与相应名和姓的结尾对齐,如下所示:
***     Melissa Honeybee
***           7        8
***接下来再打印相同的信息,但是字母数与相应名和姓的开头对齐:
***     Melissa Honeybee
***     7       8
**/

#include 
#include 

int main()
    {

        char fname[10];     //姓氏
        char lname[10];     //名字

        printf("\n\tPlease enter your first name:");
        scanf("%s",fname);

        printf("\n\tPlease enter your last name:");
        scanf("%s",lname);

        printf("\n\t%s %s\n",fname ,lname);
        printf("\t%*d %*d\n",strlen(fname),strlen(fname) ,strlen(lname),strlen(lname));
        printf("\t%s %s\n",fname ,lname);
        printf("\t%*d %*d\n",-strlen(fname),strlen(fname) ,-strlen(lname),strlen(lname));

        //碰到这种未知字符宽度的,可以用*号先顶着,然后后面用函数去代入*
        //上面两个printf就是例子,第一个是strlen计算完字符宽度然后传给*号,
        //第二个strlen计算完字符宽度然后传给d以十进制显示出来。
            return 0;
    }

《C Primer Plus 》第六版 习题 第四章_第6张图片

【4.8.7】

/**
***编写一个程序,将一个double类型的变量设置为1.0/3.0,
***一个float类型的变量设置为1.0/3.0
***分别显示两次计算的结果各3次:
***一次显示小数点后面6位数字;
***一次显示小数点后面12位数字;
***一次显示小数点后面16位数字。
***程序中要包含float.h头文件,并显示FLT_DIG和DBL_DIG的值。
***1.0/3.0的值与这些值一致吗?
**/

#include 
#include 

int main()
    {
        system("color 0A");

        double a = 1.0/3.0;
        float b = 1.0/3.0;
        printf("\n\ta = %.6f \t\t\tb = %.6f\n",a ,b);
        printf("\n\ta = %.12f \t\tb = %.12f\n",a ,b);
        printf("\n\ta = %.16f \t\tb = %.16f\n",a ,b);
        printf("\n\tdouble类型最少有效数字位数:%d\tfloat类型最少有效数字位数:%d\n\n",DBL_DIG ,FLT_DIG);

        //调用float.h文件,调用明示常量的时候如上,直接调用。
            return 0;
    }

《C Primer Plus 》第六版 习题 第四章_第7张图片

【4.8.8】

/**
***编写一个程序,提示用户输入旅行的里程和消耗的汽油量。
***然后计算并显示消耗每加仑汽油行驶的英里数,显示小数点后面一位数字。
***接下来,使用1加仑大约3.785升,1英里大约1.609千米,把单位是英里/加仑的值
***转换为升/100公里(欧洲通用的燃料消耗表示法),
***并显示结果,显示小数点后面1位数字。
***注意,美国采用的方案测量消耗单位燃料的行程(值越大越好)
***而欧洲采用单位距离消耗的燃料测量方案(值越低越好)。
***使用#define 创建符号常量或使用const限定符创建变量来表示两个转换系数。
**/

#include 
#include 
#define GALLON 3.785    //1 gallon = 3.785 L
#define MILE 1.609      //1 mile = 1.609 km


int main()
    {
        system("color 0A");

        float mile;                 //里程数
        float gallon;                  //汽油量


        printf("\n\tPlease enter the mileage of the trip:\n");
        printf("\t请输入旅行的里程km:");
        scanf("\t%f",&mile);

        printf("\n\tPlease enter the amount of petrol you need to consume:\n");
        printf("\t请输入消耗的汽油量L:");
        scanf("\t%f",&gallon);


        printf("\n\tThe oil consumption is %.1f mile /gallon\n",mile / gallon);
        printf("\t油耗为%.1f英里/加仑\n",mile / gallon);
        printf("\n\tLitre per 100km:%.1fL\n",gallon*GALLON/(mile*MILE)*100);
        printf("\t百公里消耗为:%.1f升\n",gallon*GALLON/(mile*MILE)*100);
            return 0;
    }



《C Primer Plus 》第六版 习题 第四章_第8张图片

你可能感兴趣的:(习题答案,C,primer,Plus,6,学习笔记)