计算机17-3,4作业F
Posted 1kasshole
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算机17-3,4作业F相关的知识,希望对你有一定的参考价值。
F.complete number problem with formatted output
Description |
同题目E |
Input |
N |
Output |
complete numbers within 2~N |
Sample Input |
10 100 |
Sample Output |
6=1+2+3 6=1+2+3 28=1+2+4+7+14
|
1 import java.util.*; 2 public class Main{ 3 public static void main(String[] args){ 4 Scanner in = new Scanner(System.in); 5 while(in.hasNext()){ 6 int num = in.nextInt(); 7 for(int i=6;i<=num;i++){ 8 int sum = 0; 9 int[] arr = new int[100]; 10 int k = 0; 11 for(int j=1;j<i;j++) 12 if(i%j==0){ 13 sum += j; 14 arr[k++] = j; 15 } 16 if(sum==i){ 17 System.out.print(i+"="); 18 for(int l=0;l<k;l++){ 19 System.out.print(arr[l]); 20 if(l!=k-1) 21 System.out.print("+"); 22 } 23 System.out.println(); 24 } 25 } 26 } 27 } 28 }
以上是关于计算机17-3,4作业F的主要内容,如果未能解决你的问题,请参考以下文章
HTML5期末大作业:餐饮美食网站设计——咖啡(10页) HTML+CSS+JavaScript 学生DW网页设计作业成品 web课程设计网页规划与设计 咖啡网页设计 美食餐饮网页设计...(代码片段
初识OpenGL 片段着色器(Fragment Shader)