#include <stdio.h>
void main()
{
  int m;
  for(m=1;m<=100;m++)
  {
    if(m%3==0&&m%5==0)
    printf("能被3和5整除的数有:%d\n",m);
  }
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案