Popis problému
Celý popis zadania sa nacháza – Hackerrank.
Riešenie
Opakuj načítavanie int
zo štandardného vstupu.
Vytvoril som riešenie v týchto programovacích jazykoch:
Všetky riešenia sú dostupné aj na mojom GitHub profile.
Java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import java.util.*; public class Solution { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); System.out.println(a); System.out.println(b); System.out.println(c); } } |