怎样用汇编语言实现m=a+b*c,要求a=122

2024年12月05日 02:50
有1个网友回答
网友(1):

# include< stdio. h>
main()
{
int a=122;
double b,c,m;
m=a+b*c;
printf("% lf\ n",m);
}