c++ 中 scanf 和 printf 函数用于从标准输入读取数据和向标准输出写入数据。scanf 用法:int scanf(format, …),其中 format 为要读取的数据格式,… 为要读取的变量地址;printf 用法:int printf(format, …),其中 format 为要写入的数据格式,… 为要写入的变量。
C++ 中 scanf 和 printf 用法
scanf 和 printf 是 C++ 中两个常用的标准输入/输出函数。它们用于分别从标准输入读取数据和向标准输出写入数据。
scanf
用法:
<code class="cpp">int scanf(const char *format, ...);</code>
登录后复制
其中:
-
format
:指定要读取的数据的格式字符串。 -
...
:要读取的变量的地址。
格式说明符:
- %d:整数
- %f:浮点数
- %c:字符
- %s:字符串
示例:
<code class="cpp">int age; char name[50]; scanf("%d %s", &age, name);</code>
登录后复制
printf
用法:
<code class="cpp">int printf(const char *format, ...);</code>
登录后复制
其中:
-
format
:指定要写入的数据的格式字符串。 -
...
:要写入的变量。
格式说明符:
- %d:整数
- %f:浮点数
- %c:字符
- %s:字符串
示例:
<code class="cpp">int age = 25; printf("姓名:%s,年龄:%dn", name, age);</code>
登录后复制
以上就是c++++中scanf和printf用法的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:叮当,转转请注明出处:https://www.dingdanghao.com/article/431707.html