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

2024-12-05 02:50:35
推荐回答(1个)
回答1:

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