נשלח בתאריך: 04 February 2007 בשעה 18:01 | | IP רשוּם
|
|
|
|
לחברי הצוות,
העתקתי את התוכנית של ניר אדר לציור קו מלוכסן לתוכנת C++ של מיקרוסופט שהורדתי למחשב, וכשעשיתי BUILD התגובה היתה שחסרה בתוכנה ספריה של גרפיקה. מה עלי לעשות, וכיצד אוכל להשתמש בתוכנת הגרפיקה?
התוכנית היא:
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main()
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int xmax, ymax;
/* initialize graphics and local variables */
initgraph(&gdriver, &gmode, "");
/* read result of initialization */
errorcode = graphresult();
/* an error occurred */
if (errorcode != grOk)
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1);
}
setcolor(WHITE);
xmax = getmaxx();
ymax = getmaxy();
/* draw a diagonal line */
line(0, 0, xmax, ymax);
/* clean up */
getch();
closegraph();
return 0;
}
התשובה בBUILD המדווחת על שגיאה היא זו:
Compiling...
grafic.c
c:\documents and settings\יוני\my documents\visual studio 2005\projects\grafic.c\grafic.c\grafic.c(1) : fatal error C1083: Cannot open include file: 'graphics.h': No such file or directory
Build log was saved at "file://c:\Documents and Settings\יוני\My Documents\Visual Studio 2005\Projects\grafic.c\grafic.c\Debug\BuildLog.htm"
grafic.c - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
אשמח מאד אם תוכלו לעזור לי בענין זה.
בתודה ובברכה,
יוני
|