(超简单版)的判断能否被3,5,7整除 摘要:解题思路:直接一个简单的for循环来做,不用if语句,因为太多了,不简便注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&…… 题解列表 2022年11月11日 0 点赞 3 评论 471 浏览 评分:8.8
判断能否被3、5、7整除 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; if(n%3==0&&…… 题解列表 2022年11月01日 0 点赞 2 评论 894 浏览 评分:9.9
判断能否被3、5、7整除代码 摘要:解题思路:注意事项:注意 else if 的使用方法参考代码:#include <stdio.h>#include <stdio.h>int main(){ int m; scanf("%…… 题解列表 2022年10月23日 0 点赞 1 评论 780 浏览 评分:9.3