C语言基础:printf 函数介绍;以及常用四种常用的数据类型

printf 函数介绍

#include
int main() {
/*
* %c:字符 ; %d:带符号整数; %f: 浮点数; %s: 一串字符;
*/
int age=21;
printf(“hello %s,you are %d years old\n”,“Bob”,age);
int i = 10;
double f=96.20;
printf(“student number=%3d,score=%f\n”,i,f);
i=100;
f=92.15;
printf(“student number=%d,score=%5.2f\n”,i,f);//默认右对齐。
i=10;
f=99.56;
printf(“student number=%-3d,score=%5.2f\n”,i,f);//默认右对齐,加一个 ”-“
(负号)左对齐;
return 0;
}

你可能感兴趣的:(c语言,算法,开发语言)