knyazer

Untitled

Oct 8th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1. package com.school;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.  
  7.     public static void main(String[] args) {
  8.         Scanner in = new Scanner(System.in);
  9.  
  10.         int A = in.nextInt(), sum = 0, counter = 0;
  11.  
  12.         for (int step = 1; sum <= A; step ++) { // Увеличиваем ограничитель значения
  13.             for (int plus = 1; plus <= step; plus ++) sum += plus; // Суммируем слагаемые
  14.             counter += 1; // Увеличиваем счетчик
  15.         }
  16.  
  17.         System.out.println(counter - 1);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment