题解 2786: 判断能否被3、5、7整除

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

3 5 7整除(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if((a%3==0) && (a%5==0) && (a%7=……

短路运算代替判断语句

摘要:解题思路:利用逻辑运算进行短路运算注意事项:考虑逻辑运算表参考代码:#include <stdio.h>int main() {    int n;    scanf("%d",&n);    n%3……