习题3.11#include <stdlib.h>

int main()
{
   int a=12,b=3;
   float x=18.5,y=4.6;
   printf ("%f\n",(float)(a*b)/2);
   printf ("%d\n",(int)x%(int)y);
   return 0;
}

相关文章:

  • 2022-01-15
  • 2022-12-23
  • 2021-07-19
  • 2022-02-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-15
  • 2022-12-23
  • 2021-07-29
  • 2021-09-02
  • 2021-05-31
  • 2021-08-27
  • 2021-07-14
相关资源
相似解决方案