Advertisement
Josif_tepe

Untitled

May 7th, 2022
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class MAin {
  4.     public static void main(String[] args) {
  5.         Scanner sc = new Scanner(System.in);
  6.         int n = sc.nextInt();
  7.         int paricki = 0;
  8.         while(n > 0) {
  9.             if(n >= 50) {
  10.                 n -= 50;
  11.                 paricki++;
  12.             }
  13.             else if(n >= 10) {
  14.                 n -= 10;
  15.                 paricki++;
  16.             }
  17.             else if(n >= 5) {
  18.                 n -= 5;
  19.                 paricki++;
  20.             }
  21.             else if(n >= 2) {
  22.                 n -= 2;
  23.                 paricki++;
  24.             }
  25.             else {
  26.                 n -= 1;
  27.                 paricki++;
  28.             }
  29.         }
  30.         System.out.println(paricki);
  31.     }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement