C语言实验——图形输出(字符常量练习)

来源:互联网 发布:新浪网络运营文员岗 编辑:程序博客网 时间:2024/05/28 23:20

C语言实验——图形输出(字符常量练习)

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

Problem Description

用基本输出语句打印以下图形:
#
##
###
####
#####
######

Input

本题目没有输入数据

Output

输出图形由6行组成,第1行有1个#号,第i行有连续的i个#号:
#
##
###
####
#####
######

Example Input

Example Output

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


阅读全文
0 0
原创粉丝点击