C primer plus 第六版 第6版 004章 第四章 编程 练习 答案 中文
4.1
/*编写一个程序,提示用户输入名和姓,然后以“名,姓”的格式打印出出来*/
#include
int main(void)
{
char first_name[40], last_name[40];
printf("Please enter your first name and last name: ");
scanf("%s %s", &first_name, &last_name);
printf("%s,%s", last_name, first_name);
return 0;
}
4.2
/*编写程序,提示用户输入名和姓,并执行以下操作*/
#include
#include
int main(void)
{
char first_name[40], last_name[40];
int first_width;
int last_width;
printf("Please enter your first name and last name: ");
scanf("%s %s", &first_name, &last_name);
//打印名和姓,包括双引号
printf("\"%s\",\"%s\"\n", last_name, first_name);
//在宽度为20的字段右端打印名和姓
printf("\"%20s\",\"%20s\"\n", last_name, first_name);
//在宽度为20的字段左端打印名和姓
printf("\"%-20s\",\"%-20s\"\n", last_name, first_name);
//在比姓名宽度3的字段中打印名和姓
first_width = strlen(first_name) + 3;
last_width = strlen(last_name) + 3;
printf("\"%*s\",\"%*s\"", last_width, last_name, first_width, first_name);
return 0;
}
4.3
/*编写一个程序,读取一个浮点数,首先以小数点记数法打印,
然后以指数记数法打印。用下面的格式进行输出*/
#include
int main(void)
{
float num;
printf("Please enter a float number: ");
scanf("%f", &num);
printf("小数点计数法:%f\n", num);
printf("指数计数发: %e", num);
}
4.4
/*编写一个程序,提示用户输入身高(单位:英寸)和姓名
然后以下面的格式显示用户刚输入的信息*/
#include
int main(void)
{
float height;
printf("Please enter your height(inch):");
scanf("%f", &height);
printf("Dabney, you are %1.3f feet tall.", height);
}
4.5
/*编写一个程序,提示用户输入以兆位每秒(Mb/s)为单位的下载速度
和以兆字节(MB)为单位的文件大小。计算文件下载的时间*/
#include
int main(void)
{
float volume, speed, time;
printf("Please enter your file size(MB): ");
scanf("%f", &volume);
printf("Please enter your net speed(Mb/s): ");
scanf("%f", &speed);
time = volume * 8 / speed; //一字节=8位
printf("\n");
printf("At %.2f megabits per second, a file of %.2f megabytes downloads in %.2f second",
speed, volume, time);
return 0;
}
4.6
/*编写一个程序,先提示用户输入名,然后提示用户输入姓
在一行打印用户输入的名和姓,下一行分别打印名和姓的字母数。
字母名和姓的结尾对其*/
#include
#include
int main(void)
{
char first_name[40], last_name[40];
int first_width, last_width; //定义名和姓的长度变量
printf("Please enter your first name: ");
scanf("%s", &first_name);
printf("Please enter your last name: ");
scanf("%s", &last_name);
first_width = strlen(first_name);
last_width = strlen(last_name);
//字母个数与姓名结尾对其
printf("%s %s\n", first_name, last_name);
printf("%*d %*d\n", first_width, first_width, last_width, last_width);
//字母个数与姓名首部对其
printf("%s %s\n", first_name, last_name);
printf("%-*d %-*d\n", first_width, first_width, last_width, last_width);
}
4.7
/*题目太长,不抄*/
#include
#include
int main(void)
{
double a = 1.0 / 3.0;
float b = 1.0 / 3.0;
//显示小数点后6为数字
printf("%.6f %.6f\n", a, b);
//显示小数点后12位数字
printf("%.12f %.12f\n", a, b);
//显示小数点后16位数字
printf("%.16f %.16f\n", a, b);
printf("%d %d", FLT_DIG, DBL_DIG);
return 0;
}
4.8
#include
#include
int main(){
const double statuteMileToKilometer = 1.609;
const double gallonToLitre = 3.785;
double statuteMile;
double gallon;
double consumption;
printf("里程英里\n");
scanf("%lf",&statuteMile);
printf("加仑耗油量\n");
scanf("%lf",&gallon);
double kilometer = statuteMile/statuteMileToKilometer;
//一公里的耗油量
double litre = gallon/kilometer/gallonToLitre;
consumption = litre * 100;
printf("100公里耗油量是: %.1f/100",consumption);
return 0;
}
你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。
我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:
撤销:Ctrl/Command + Z
重做:Ctrl/Command + Y
加粗:Ctrl/Command + B
斜体:Ctrl/Command + I
标题:Ctrl/Command + Shift + H
无序列表:Ctrl/Command + Shift + U
有序列表:Ctrl/Command + Shift + O
检查列表:Ctrl/Command + Shift + C
插入代码:Ctrl/Command + Shift + K
插入链接:Ctrl/Command + Shift + L
插入图片:Ctrl/Command + Shift + G
直接输入1次#,并按下space后,将生成1级标题。
输入2次#,并按下space后,将生成2级标题。
以此类推,我们支持6级标题。有助于使用TOC
语法后生成一个完美的目录。
强调文本 强调文本
加粗文本 加粗文本
标记文本
删除文本
引用文本
H2O is是液体。
210 运算结果是 1024.
链接: link.
当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。
去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片
.
// An highlighted block
var foo = 'bar';
一个简单的表格是这么创建的:
项目 | Value |
---|---|
电脑 | $1600 |
手机 | $12 |
导管 | $1 |
使用:---------:
居中
使用:----------
居左
使用----------:
居右
第一列 | 第二列 | 第三列 |
---|---|---|
第一列文本居中 | 第二列文本居右 | 第三列文本居左 |
SmartyPants将ASCII标点字符转换为“智能”印刷标点HTML实体。例如:
TYPE | ASCII | HTML |
---|---|---|
Single backticks | 'Isn't this fun?' |
‘Isn’t this fun?’ |
Quotes | "Isn't this fun?" |
“Isn’t this fun?” |
Dashes | -- is en-dash, --- is em-dash |
– is en-dash, — is em-dash |
一个具有注脚的文本。2
Markdown将文本转换为 HTML。
您可以使用渲染LaTeX数学表达式 KaTeX:
Gamma公式展示 Γ ( n ) = ( n − 1 ) ! ∀ n ∈ N \Gamma(n) = (n-1)!\quad\forall n\in\mathbb N Γ(n)=(n−1)!∀n∈N 是通过欧拉积分
Γ ( z ) = ∫ 0 ∞ t z − 1 e − t d t   . \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=∫0∞tz−1e−tdt.
你可以找到更多关于的信息 LaTeX 数学表达式here.
可以使用UML图表进行渲染。 Mermaid. 例如下面产生的一个序列图::
这将产生一个流程图。:
我们依旧会支持flowchart的流程图:
如果你想尝试使用此编辑器, 你可以在此篇文章任意编辑。当你完成了一篇文章的写作, 在上方工具栏找到 文章导出 ,生成一个.md文件或者.html文件进行本地保存。
如果你想加载一篇你写过的.md文件或者.html文件,在上方工具栏可以选择导入功能进行对应扩展名的文件导入,
继续你的创作。
mermaid语法说明 ↩︎
注脚的解释 ↩︎