易百教程

编写程序:创建多个变量

要求
创建一个使用三个整数变量a,b和c的程序。并为每个值分配整数值,并显示结果。

提示

声明同一类型的多个变量时,可以在同一行上指定所有变量。

int a,b,c;

参考实现代码:

#include <stdio.h> 

int main()
{ 
      int a, b, c; 

      a = 1; 
      b = 6; 
      c = 20; 
      printf("a = %d
b= %d
c = %d
",a,b,c); 
      return(0); 
}

编译并执行上面示例代码,得到以下结果:

hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
a = 1
b= 6
c = 20