<section id="nice" data-tool="mdnice编辑器" data-website="https://www.mdnice.com" style="font-size: 16px; color: black; line-height: 1.6; word-spacing: 0px; letter-spacing: 0px; word-wrap: break-word; text-align: left; font-family: Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, 'PingFang SC', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; padding: 15px; word-break: break-all;"><p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">本文主要介绍一下C语言中printf和scanf两个函数。</p>
<h3 data-tool="mdnice编辑器" style="margin-top: 30px; margin-bottom: 15px; padding: 0px; font-weight: bold; color: black; font-size: 20px;"><span class="prefix" style="display: none;"></span><span class="content">printf函数</span><span class="suffix" style="display: none;"></span></h3>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">printf函数被设计用来显示格式串(format string)的内容,并且在该串中的指定位置插入可能的值。调用printf函数时必须提供格式串,格式串后面的参数是需要在显示时插入到该串中的值:</p>
<pre class="custom" data-tool="mdnice编辑器" style="margin-top: 10px; margin-bottom: 10px;"><code class="hljs" style="overflow-x: auto; padding: 16px; color: #abb2bf; background: #282c34; display: -webkit-box; font-family: Operator Mono, Consolas, Monaco, Menlo, monospace; border-radius: 0px; font-size: 12px; -webkit-overflow-scrolling: touch;"><span class="hljs-built_in" style="color: #e6c07b; line-height: 26px;">printf</span>(格式串, 表达式<span class="hljs-number" style="color: #d19a66; line-height: 26px;">1</span>, 表达式<span class="hljs-number" style="color: #d19a66; line-height: 26px;">2</span>, ...);
</code></pre>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">显示的值可以是常量、变量或者更加复杂的表达式。调用printf函数一次可以打印的值的个数没有限制。</p>
<h4 data-tool="mdnice编辑器" style="margin-top: 30px; margin-bottom: 15px; padding: 0px; font-weight: bold; color: black; font-size: 18px;"><span class="prefix" style="display: none;"></span><span class="content">转换说明</span><span class="suffix" style="display: none;"></span></h4>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;"><strong style="font-weight: bold; color: black;">转换说明可以用%m.pX格式或%-m.pX格式</strong>,这里的m和p都是整数常量,而X是字母。m和p都是可选的。如果省略p,m和p之间的小数点也要去掉。在转换说明%10.2f中,m是10,p是2,而X是f。在转换说明%10f中,m是10,p(连同小数点一起)省去了;而在转换说明%.2f中,p是2,m省去了。</p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;"><strong style="font-weight: bold; color: black;">如果要显示的数值所需的字符数少于m,那么值在字段内是右对齐的。(换句话说,在值前面放置额外的空格。)</strong></p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">例:转换说明%4d将以•123的形式显示数123(本章用符号•表示空格字符)。</p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;"><strong style="font-weight: bold; color: black;">如果要显示的值所需的字符数多于m,那么字段宽度会自动扩展为所需的尺寸。</strong></p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">例:转换说明%4d将以12345的形式显示数12345,而不会丢失数字。</p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;"><strong style="font-weight: bold; color: black;">在m前放上一个负号会导致左对齐;转换说明%-4d将以123•的形式显示123。</strong></p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;"><strong style="font-weight: bold; color: black;">精度(precision)p</strong>的含义很难描述,因为它依赖于<strong style="font-weight: bold; color: black;">转换说明符(conversionspecifier)X</strong>的选择。X表明在显示数值前需要对其进行哪种转换。对数值来说最常用的转换说明符有以下几个。</p>
<ul data-tool="mdnice编辑器" style="margin-top: 8px; margin-bottom: 8px; padding-left: 25px; color: black; list-style-type: disc;">
<li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">d ——表示十进制(基数为10)形式的整数。p指明了待显示的数字的最少个数(必要时在数前加上额外的零);如果省略p,则默认它的值为1。</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">e ——表示指数(科学记数法)形式的浮点数。p指明了小数点后应该出现的数字的个数(默认值为6)。如果p为0,则不显示小数点。</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">f ——表示“定点十进制”形式的浮点数,没有指数。p的含义与在说明符e中的一样。</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">g ——表示指数形式或者定点十进制形式的浮点数,形式的选择根据数的大小决定。p说明可以显示的有效数字(没有小数点后的数字)的最大数量。与转换说明符f不同,g的转换将不显示尾随的零。此外,如果要显示的数值没有小数点后的数字,g就不会显示小数点。编写程序时无法预知数的大小或者数值变化范围很大的情况下,说明符g对于数的显示是特别有用的。在用于显示大小适中的数时,说明符g采用定点十进制形式。但是,在显示非常大或非常小的数时,说明符g会转换成指数形式以便减少所需的字符数。</section></li></ul>
<h4 data-tool="mdnice编辑器" style="margin-top: 30px; margin-bottom: 15px; padding: 0px; font-weight: bold; color: black; font-size: 18px;"><span class="prefix" style="display: none;"></span><span class="content">转义序列</span><span class="suffix" style="display: none;"></span></h4>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">格式串中常用的代码\n被称为转义序列(escape sequence)。转义序列使字符串包含一些特殊字符而不会使编译器引发问题,这些字符包括非打印的(控制)字符和对编译器有特殊含义的字符(如")。</p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">常用的转义序列:</p>
<ul data-tool="mdnice编辑器" style="margin-top: 8px; margin-bottom: 8px; padding-left: 25px; color: black; list-style-type: disc;">
<li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">警报(响铃)符:\a</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">回退符:\b</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">换行符:\n</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">水平制表符:\t</section></li><li><section style="margin-top: 5px; margin-bottom: 5px; line-height: 26px; text-align: left; color: rgb(1,1,1); font-weight: 500;">字符": "</section></li></ul>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">不能在字符串中只放置单独一个字符\,编译器将认为它是一个转义序列的开始。为了显示单独一个字符\,需要在字符串中放置两个\字符:</p>
<pre class="custom" data-tool="mdnice编辑器" style="margin-top: 10px; margin-bottom: 10px;"><code class="hljs" style="overflow-x: auto; padding: 16px; color: #abb2bf; background: #282c34; display: -webkit-box; font-family: Operator Mono, Consolas, Monaco, Menlo, monospace; border-radius: 0px; font-size: 12px; -webkit-overflow-scrolling: touch;"><span class="hljs-built_in" style="color: #e6c07b; line-height: 26px;">printf</span>(<span class="hljs-string" style="color: #98c379; line-height: 26px;">"\"</span>);
</code></pre>
<h3 data-tool="mdnice编辑器" style="margin-top: 30px; margin-bottom: 15px; padding: 0px; font-weight: bold; color: black; font-size: 20px;"><span class="prefix" style="display: none;"></span><span class="content">scanf函数</span><span class="suffix" style="display: none;"></span></h3>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">scanf函数根据特定的格式读取输入。scanf函数转换说明的用法和printf函数转换说明的用法本质上是一样的。</p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">在许多情况下,scanf函数的格式串只包含转换说明,如下例所示:</p>
<pre class="custom" data-tool="mdnice编辑器" style="margin-top: 10px; margin-bottom: 10px;"><code class="hljs" style="overflow-x: auto; padding: 16px; color: #abb2bf; background: #282c34; display: -webkit-box; font-family: Operator Mono, Consolas, Monaco, Menlo, monospace; border-radius: 0px; font-size: 12px; -webkit-overflow-scrolling: touch;"><span class="hljs-keyword" style="color: #c678dd; line-height: 26px;">int</span> i, j;
<span class="hljs-keyword" style="color: #c678dd; line-height: 26px;">float</span> x, y;
<span class="hljs-built_in" style="color: #e6c07b; line-height: 26px;">scanf</span> (<span class="hljs-string" style="color: #98c379; line-height: 26px;">"%d%d%f%f"</span>, &i, &j, &x, &y);
</code></pre>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">输入:</p>
<pre class="custom" data-tool="mdnice编辑器" style="margin-top: 10px; margin-bottom: 10px;"><code class="hljs" style="overflow-x: auto; padding: 16px; color: #abb2bf; background: #282c34; display: -webkit-box; font-family: Operator Mono, Consolas, Monaco, Menlo, monospace; border-radius: 0px; font-size: 12px; -webkit-overflow-scrolling: touch;"><span class="hljs-number" style="color: #d19a66; line-height: 26px;">1</span> <span class="hljs-number" style="color: #d19a66; line-height: 26px;">-20</span> <span class="hljs-number" style="color: #d19a66; line-height: 26px;">.3</span> <span class="hljs-number" style="color: #d19a66; line-height: 26px;">-4.0e3</span>
</code></pre>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">scanf函数将读入上述行的信息,并且把这些符号转换成它们表示的数,然后分别把<strong style="font-weight: bold; color: black;">1、-20、0.3和-4000.0</strong>赋值给变量i、j、x和y。</p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">微信公众号 <code style="font-size: 14px; word-wrap: break-word; padding: 2px 4px; border-radius: 4px; margin: 0 2px; color: #1e6bb8; background-color: rgba(27,31,35,.05); font-family: Operator Mono, Consolas, Monaco, Menlo, monospace; word-break: break-all;">长夜西风</code></p>
<p data-tool="mdnice编辑器" style="padding-top: 8px; padding-bottom: 8px; margin: 0; color: black; line-height: 26px; letter-spacing: 1px; text-align: justify; font-size: 17px;">个人网站 http://www.cmder.info/</p>
</section>
C语言格式化输入输出
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...