资源简介
此程序主要用C语言编写,主要把是3年的信息绘成柱状图进行分析比较,数据可以自行输入~
代码片段和文件信息
#include “graphics.h“
#include “conio.h“
#include “stdio.h“
int income49products49income56products56income78products78;
int 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(8080500400);
rectangle(9090125115);
rectangle(90130125155);
setfillstyle(1YELLOW);
bar(9090125115);
setfillstyle(1RED);
bar(90130125155);
outtextxy(130100“nation“);
outtextxy(180100“income“);
outtextxy(130140“social“);
outtextxy(180140“products“);
int temp[6]={income49products49income56products56income78products78};
int j=0;
for(int m=0;m<2*n;m++)
- 上一篇:俄罗斯方块源代码(C++源代码)
- 下一篇:编译原理_词法分析器_C语言版_简单易懂
相关资源
- C语言的嵌入式汇编基本使用.docx(2页
- C语言嵌入式Modbus协议栈,支持主站和
- C语言封装的HttpClient接口
- 交互式计算机图形学 第六版 OpenGL源代
- C语言课设计算器
- C语言 学生兴趣管理系统
- c语言实现火车订票系统(控制台)源
- 模拟笔记本电脑(C语言实现)
- c语言实现竞技比赛打分系统
- KMP算法C语言程序
- Linux c语言 学生成绩管理系统
- 弹跳的小球(test.c)
- 林锐—高质量C编程
- 基于c语言的通讯录系统
- C语言全套课件与教学资料-哈工大
- 计算机二级C语言真题.docx
- C语言实现 设备信息管理系统
- GBT 28169-2011 嵌入式软件 C语言编码规范
- C语言标准库函数大全.chm
- C语言常用代码(分章节)
- c语言课程设计:客房登记系统源码
- C语言常用算法源代码
- 吕鑫:VS2015之博大精深的0基础C语言视
- c语言文都讲义2020
- c语言课件56883
- C语言推箱子win控制台
- C语言程序设计50例.docx
- 烟花优化算法(c语言版)
- C语言程序设计教材习题参考答案.do
- 数据结构(C语言版)ppt课件,清华,
评论
共有 条评论