codeblocks上运行十分正确,但是在此网站上运行结果确实错的 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(){ int N; scanf(…… 题解列表 2020年09月06日 0 点赞 1 评论 230 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,j,s; scanf("%d",&a); for(i=2;i<=a;i++) …… 题解列表 2024年11月13日 0 点赞 0 评论 60 浏览 评分:0.0
完数的判断 摘要:解题思路:注意事项:因数和数组要在循环内初始化参考代码:#include<stdio.h>int main() { int n,i,j,t; scanf("%d",&n); for(…… 题解列表 2022年01月13日 0 点赞 0 评论 210 浏览 评分:0.0
[编程入门]完数的判断-题解(C语言代码) 摘要:```c #include int ws(int n){ int i,sum=0; for(i=1;i…… 题解列表 2020年02月22日 0 点赞 0 评论 319 浏览 评分:0.0
完数的判断(C++) 摘要:解题思路:双重for循环注意事项:sum每循环一轮重新归零注意变量的适用范围以上为本人敲代码时发生的错误,共勉!参考代码:#include<iostream>using namespace std;i…… 题解列表 2024年11月28日 1 点赞 0 评论 154 浏览 评分:0.0
1017: [编程入门]完数的判断 摘要:解题思路:注意事项:注意时间不能超出参考代码:n = int(input())for i in range(6, n + 1): l = [1] for j in range(2, int…… 题解列表 2024年01月15日 0 点赞 0 评论 86 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; int a[1001],index; int s; scanf("%d", &n…… 题解列表 2019年01月17日 0 点赞 0 评论 462 浏览 评分:0.0
完数的判断(一般解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int i,j,a[100],m,x; int N,s; scanf…… 题解列表 2022年11月09日 0 点赞 0 评论 61 浏览 评分:0.0
[编程入门]全局变量困惑之完数的判断-题解(C++代码) 摘要:解题思路:判断完数 遍历该数所有因数,依次保存可以整除的数 注意事项:有个大问题关于全局变量 参考代码: ```cpp #include using namespace std;…… 题解列表 2021年02月05日 0 点赞 0 评论 188 浏览 评分:0.0
[编程入门]完数的判断-题解(C语言代码) 摘要: #include"stdio.h" int f(int n); int main() { int a,i=0,s,n; sca…… 题解列表 2019年09月19日 0 点赞 0 评论 359 浏览 评分:0.0