# 12月10日作业 **Repository Path**: deng-fuyu/operation-on-december-10 ## Basic Information - **Project Name**: 12月10日作业 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 27 - **Created**: 2021-12-13 - **Last Updated**: 2021-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 12月10日作业: 一个数如果恰好等于它的因子之和,这个数就称为”完数”. ``` 例如,6的因子为1,2,3,而6=1+2+3,因此6是”完数”. ``` 编程序找出1000(含)内的所有完数,并按下面格式输出因子 ``` 输出格式:6是完数,他的因子有:1 2 3 ```