操作 | 必需的控制字符串 |
---|---|
读取short类型的值 | %hd |
读取int类型的值 | %d |
读取long类型的值 | %ld |
读取float类型的值 | %f 或 %e |
读取double类型的值 | %lf 或 %le |
在%ld
和%lf
格式说明符中,l
是小写的L
。必须始终在使用&
接收输入值变量的名称前面加上前缀。
#include <stdio.h>
int main(void){
float radius = 0.0f;
float diameter = 0.0f;
float circumference = 0.0f;
float area = 0.0f;
printf("Input the diameter of a circle:");
scanf("%f", &diameter);
radius = diameter/2.0f;//
circumference = 2.0f * 3.14159f * radius;
area = 3.14159f * radius * radius;
printf("/nThe circumference is %.2f. ", circumference);
printf("/nThe area is %.2f./n", area);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266492.html