كود:
include <stdio.h>
#include <conio.h>
#include <math.h>
void main ()
{
int x,y,z ;
double n ;
printf("Please enter two no. that you wante to add them:%d%d\n",x,y);
z=x+y;
scanf("%d",&z);
printf("Please enter two no. that you wante to subtract them:%d%d\n",x,y);
z=x-y;
scanf("%d",&z);
printf("Please enter two no. that you wante to multply them:%d%d\n",x,y);
z=x*y;
scanf("%d",&z);
printf("Please enter two no. that you wante to find the remainder for them:%d%d\n",x,y);
z=x%y;
scanf("%d",&z);
printf("Please enter two no. that you wante to divid them:%d%d\n",x,y);
n=x/y;
scanf("%d",&n);
getch();
}
البرنامج لم يظهر لي أي أخطاء .. لكن عند التطبيق
لا تظهر النتائج .. وجنب كل printf يظهر رقم طويل غريب
ما السبب ؟