Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Pocetok {
- public static void main(String[] args) {
- Scanner sc = new Scanner(System.in);
- int[] niza = new int[10];
- for(int i = 0; i < 5; i++) {
- niza[i] = sc.nextInt();
- }
- for(int i = 0; i < 5; i++) {
- System.out.print(niza[i] + " ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement