#include <iostream> #include <cstdlib> #include <cmath> #include <deque> #include <algorithm> #include <numeric> #include <iterator> #include <sstream> #include <iomanip> #include <vector> #include <string.h> #include <string> using namespace std; int main() { int n; cin>>n; int sum=0; for(int i=1;i<n;i++) { if(n%i==0) { sum+=i; } } if(sum==n) { cout<<"yes"<<endl; } else { cout<<"no"<<endl; } return 0; }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
简单的a+b (C语言代码)浏览:528 |
打水问题 (C语言代码)浏览:1148 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:638 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:606 |
Minesweeper (C语言描述,蓝桥杯)浏览:1176 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:653 |
数列排序 (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:465 |