从第一行代码开始

 

 第一部分:基础结构

#include<graphics.h>
#include<conio.h>
#include<stdio.h>
int main()
{
	initgraph(800, 600);
	fillcircle(400, 300, 100);
	_getch();
	return(0);
}

 第二部分:变量和常量

#include<graphics.h>
#include<conio.h>
#include<stdio.h>
int main()
{
	int width = 800;
	int height = 600;
	initgraph(width, height);
	fillcircle(400, 300, 100);
	_getch();
	return(0);
}

  第三部分:变量和常量

 

posted @ 2023-03-24 15:07  飞雪飘鸿  阅读(21)  评论(0编辑  收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL