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
:指定要读取的数据的格式字符串。...
:要读取的变量的地址。格式说明符:
示例:
<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
:指定要写入的数据的格式字符串。...
:要写入的变量。格式说明符:
示例:
<code class="cpp">int age = 25; printf("姓名:%s,年龄:%d\n", name, age);</code>
以上是c++中scanf和printf用法的详细内容。更多信息请关注PHP中文网其他相关文章!