係統粉 > 電腦問答 > 其他問答

已解決無法得到效果圖

提問者:阿楠楠′  |  瀏覽次  |  提問時間: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
相關問答
最新其他問答
解決方法