系统粉 > 电脑问答 > 其他问答

已解决无法得到效果图

提问者:阿楠楠′  |  浏览次  |  提问时间:2017-03-18  |  回答数量:2

无法得到效果图 #include<graphics.h>//包含头文件#include<stdio.h>#include<stdlib.h>#include<conio.h>void DealWidthPixel()//绘制直线函数{intxBegin,yBegin,xEnd,yEnd;//起点,终点inty,x;//起点和终点的长度差doublek;//斜率intm,n=0;printf(\"Please input the start positionof x,y:\\n\");scanf(\"%d%d\",&xBegin,&yBegin);//输入起点坐标printf(\"Please input the end position of x,y:\\n\");scanf(\"%d %d\",&xEnd,&yEnd);//输入终点坐标y=yEnd-yBegin;x=xEnd-xBegin;k=(double)y/x;//得出斜率for(m=0;m<x;m++){n=((int)(yBegin+m*k)+0.5)

已有2条答案
冒泡金鱼

冒泡金鱼

回答数:200  |  被采纳数:93

测试从10 20到100 200画线,没问题。
2017-03-18 09:18:49
赞 20
安年mmmmm

安年mmmmm

回答数:126  |  被采纳数:68

直接用API函数不好吗?如果需要对锯齿修正,可以用网上流传很广的那个防直线走样的函数。
2017-03-18 09:33:59
赞 12
相关问答
最新其他问答
解决方法