用c语言输出整数30,输出浮点数3.141592(小数点后六位),输出浮点数0.618(只输出小数 点后三位,不可是0.618000),定义字符并输出单个字符A,定义字符串,输出字符串 abcde
时间: 2024-10-14 19:12:03 浏览: 33
在C语言中,你可以按照以下方式分别输出整数、浮点数、字符以及字符串:
1. 输出整数30:
```c
#include <stdio.h>
int main() {
int num = 30;
printf("%d", num);
return 0;
}
```
2. 输出浮点数3.141592(保留六位小数):
```c
#include <stdio.h>
int main() {
float pi = 3.141592f; // 使用%f指定浮点数格式
printf("%.6f", pi);
return 0;
}
```
3. 输出浮点数0.618(保留三位小数,非0.618000):
```c
#include <stdio.h>
int main() {
float fraction = 0.618;
printf("%.3f", fraction); // 如果结果刚好是0.618,则不会自动补零
return 0;
}
```
4. 定义字符并输出单个字符'A':
```c
#include <stdio.h>
int main() {
char letter = 'A';
printf("%c", letter);
return 0;
}
```
5. 定义字符串并输出 "abcde":
```c
#include <stdio.h>
int main() {
const char* str = "abcde";
printf("%s", str);
return 0;
}
```
以上就是C语言中输出不同数据类型的示例。
阅读全文