从第一行代码开始

 

 第一部分:基础结构

1
2
3
4
5
6
7
8
9
10
#include<graphics.h>
#include<conio.h>
#include<stdio.h>
int main()
{
    initgraph(800, 600);
    fillcircle(400, 300, 100);
    _getch();
    return(0);
}

 第二部分:变量和常量

1
2
3
4
5
6
7
8
9
10
11
12
#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 @   飞雪飘鸿  阅读(34)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 一文读懂知识蒸馏
· 终于写完轮子一部分:tcp代理 了,记录一下
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL
点击右上角即可分享
微信分享提示