Description
用c语言的基本输出格式打印下列内容:
100
A
3.140000
Input
本题目没有输入数据
Output
输出三行数据:
100
A
3.140000
Sample
Output
100 A 3.140000
#include <stdio.h>
int main()
{
int a = 100;
char b = 'A';
float c = 3.140000;
printf("%d\n%c\n%f",a,b,c);
}
© 版权声明
吾爱博客|AYFRE.COM 版权所有,转载请标明出处。
THE END
请登录后查看评论内容