C语言实验——格式化输出(常量练习)

来源:互联网 发布:淘宝直播入口在哪 编辑:程序博客网 时间:2024/06/10 02:18

C语言实验——格式化输出(常量练习)

Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic

Problem Description

用c语言的基本输出格式打印下列内容: 
100
A
3.140000

Input

本题目没有输入数据

Output

输出三行数据:
100
A
3.140000

Example Input

Example Output

100A3.140000
#include<stdio.h>int main(){    printf("100\nA\n3.140000\n");    return 0;}


阅读全文
0 0