وعليكم السلام ورحمة الله وبركاته .
التصحيح :
كود PHP:
#include <stdio.h>
int main(void)
{
int id;
char gender;
double temp;
printf("please enter your id :\n");
scanf("%d",&id);
printf("please enter your gender :\n");
scanf(" %c",&gender);
printf("please enter your temp :\n");
scanf("%lf",&temp);
printf("the id is %d, the gender is %c and the temp. Is %f \n",id , gender,temp);
return(0);
}
بالتوفيق .
[/center]