vlambda博客
学习文章列表

C语言实例系列(1)

C




这是c语言实例系列,从最简单的打印hello world开始;争取至少两天一更。



01

输出“hello world”



使用 printf() 输出 "Hello, World!"。


    
      
      
    


#include <stdio.h>

int main() {
printf("hello world");
return 0;
}

结果:hello world


02

输入输出整数


使用 printf()  %d 格式化输出整数。


   
     
     
   


#include <stdio.h>
int main() {
int number;
printf("please enter integer number:");
scanf("%d",&number);
printf("The integer number you entered is:%d",number);
return 0;
}

结果:please enter integer number:9
The integer number you entered is:9


03

输出单个字符


使用 printf() 与 %c 格式化输出一个字符。


   
     
     
   

#include <stdio.h>
int main() {
char c; //
声明字符c
c='A'; //
定义字符c
printf("c
的值为%c",c);
return 0;
}

结果:c的值为A



04

输出浮点数


使用printf()与%f输出浮点数。


   
     
     
   

#include <stdio.h>
int main() {
float a;
a=12.6685;
printf("a
的值为:%f",a);
return 0;
}//float
占4个字节 精确小数点后6位

结果:a的值为:12.668500



05

输出输出双精度(double)数


使用 printf() 与 %e 输出双精度数。


   
     
     
   

#include <stdio.h>
int main() {
double b;
b=12.001234;
printf("b
的值为:%le",b);
return 0;
}//double
占8个字节 精确小数点后15位

结果:b的值为:1.200123e+001




END





扫描二维码

获取更多精彩

lala-zzy



来源:网络(侵删)
图片来源:网络(侵删)