C语言实验——格式化输出(常量练习)
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
用c语言的基本输出格式打印下列内容:
100
A
3.140000
100
A
3.140000
Input
本题目没有输入数据
Output
输出三行数据:
100
A
3.140000
100
A
3.140000
Example Input
Example Output
100 A 3.140000
Hint
Author
参考代码
#include <stdio.h> int main() { printf("100\nA\n3.140000"); return 0; }