整数是表示正数和负数的整数。例如,-3
,-2
,-1
,0
,1
,2
和3
,但不是小数或小数。整数数据类型最多包含四个字节的值,并使用int
关键字声明。
#include <stdio.h>
int main()
{
int x;
printf("integer x declared.");
}
执行输出结果为:
integer x declared.
可以使用一个声明在同一行上声明多个变量。
#include <stdio.h>
int main()
{
int x, y, z;
int a=1,b=2,c=3;
printf("three integer declared./n");
printf("a=%d, b=%d, c=%d /n", a,b,c);
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266538.html