C语言如何画柱状图

这篇博客介绍了如何使用C语言绘制柱状图,包括数据输入、柱状图的绘制以及年份标注。通过示例代码展示了如何用graphics.h库来实现柱状图的图形化展示,涉及到了图形填充、矩形绘制和文本输出等技术。
摘要由CSDN通过智能技术生成

#include "graphics.h"
#include "conio.h"
#include "stdio.h"

int income49,products49,income56,products56,income78,products78int n=3;//years

void input()//柱状图的数据可以自己输入
{
   printf("Please input nation income and social products in 1949: ");
   scanf("%d %d",&income49,&products49);
   printf("Please input nation income and social products in 1956: ");
   scanf("%d %d",&income56,&products56);
   printf("Please input nation income and social products in 1978: ");
   scanf("%d %d",&income78,&products78);
}


void draw()

 rectangle(80,80,500,400);
    rectangle(90,90,125,115);
    rectangle(90,130,125,155);
    setfillstyle(1,YELLOW);
    bar(90,90,125,115);
    setfillstyle(1,RED);
    bar(90,130,125,155);
    outtextxy(130,100,"nation");
    ou

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值