02-09-2005, 21:44
|
|
|
חבר מתאריך: 25.10.04
הודעות: 54
|
|
בעיה קטנטנה ב C
כתבתי את הקוד הבא:
קוד:
#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main(void)
{
int num1,num2,sum;
clrscr();
gotoxy(12,15);
textcolor(4);
textbackground(6);
cprintf("\n get num1 \n");
scanf("%d",&num1);
gotoxy(12,17);
textcolor(7);
background(2);
cprintf("\n get num2 \n");
scanf("%d",&num2);
sound(400);
delay(1000);
nosound();
sum=num1+num2;
gotoxy(12,19);
textcolor(17);
background(2);
cprintf("\n sum=%d \n",sum);
flushall();
getchar();
}
ואני מקבל את שגיאות...
[התמונה הבאה מגיעה מקישור שלא מתחיל ב https ולכן לא הוטמעה בדף כדי לשמור על https תקין: http://img381.imageshack.us/img381/9664/untitled9wf.jpg]
עברתי על זה כמה פעמים ואני לא מבין איפה השגיאה (ואל תצחקו עלי רק התחלתי ללמוד היום) :|
תודה...
|