C语言实例系列
Posted 秃头小哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言实例系列相关的知识,希望对你有一定的参考价值。
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
以上是关于C语言实例系列的主要内容,如果未能解决你的问题,请参考以下文章
一起talk C栗子吧(第一百三十五回:C语言实例--exec系列函数一)