C 语言实例 - 输出整数
C 语言教程
· 2019-02-20 13:27:57
使用 printf()
与 %d
格式化输出整数。
实例
#include <stdio.h>
int main()
{
int number;
// printf() 输出字符串
printf("输入一个整数: ");
// scanf() 格式化输入
scanf("%d", &number);
// printf() 显示格式化输入
printf("你输入的整数是: %d", number);
return 0;
}
输出结果:
输入一个整数: 45 你输入的整数是: 45
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Algorithms in C (Computer Science Series)
Robert Sedgewick / Addison-Wesley Professional / 1990-01-11 / USD 59.99
This new version of the best-selling book, Algorithms, SecondEdition, provides a comprehensive collection of algorithmsimplemented in C. A variety of algorithms are described in eachofthe following ar......一起来看看 《Algorithms in C (Computer Science Series)》 这本书的介绍吧!