HOC24
Lớp học
Môn học
Chủ đề / Chương
Bài học
2097152
Mình không biết có đúng không nha
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package test01; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * * @author DOTNETGROUP */ public class Test01 { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException{ // TODO code application logic here BufferedReader kbd = new BufferedReader(new InputStreamReader(System.in)); //System.out.print("Nhap a: "); //String s=kbd.readLine(); //int a=Integer.parseInt(s); System.out.print("Nhap n: "); String s=kbd.readLine(); int b=Integer.parseInt(s); for(int i = 1;i<b;i++) { int tong=0; for(int j=1; j<i;j++) { if(i%j==0) tong+=j; } if(i==tong) { System.out.println(i); } } } }
( x + 1 ) + ( x + 2 ) + ... + ( x + 100 ) = 5750
x \(\times\) 100 + 1 + 2 + ... + 100 = 5750
x \(\times\) 100 + 5050 = 5750
x \(\times\) 100 = 700
x = 7