IndexError: index 0 is out of bounds for axis 1 with size 0 目录
IndexError: index 0 is out of bounds for axis 1 with size 0 【常见模块错误】
【解决方案】 欢迎来到我的主页,我是博主英杰,211科班出身,就职于医疗科技公司&#…
你要计算1~100之间的数字先得打印出来1~100之间的数字然后在判断是不是3的倍数然后在打印出数字,代码如下
#include<stdio.h>
int main()
{int i 0;for (i 1; i < 100; i){if (i % 3 0){printf("%d ", i);}}return 0;
}