URI Problem (Array Fill IV) 1179:
Sum of Consecutive Even Numbers is a basic problem on URI online judge for novice problem solver.
You can find details on this Link.
import java.util.Scanner; /** * @Author : Muhammad Harun-Or-Roshid * @Date : Oct 27, 2016 * @Time : 10:58:46 PM */ public class Uri1179 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int par[] = new int[5]; int impar[] = new int[5]; int p = 0; int im = 0; for (int i = 0; i < 15; i++) { int x = sc.nextInt(); if (x % 2 == 0) { par[p] = x; p++; } else { impar[im] = x; im++; } if (p == 5) { int c = 0; while (c < p) { System.out.println("par[" + c + "] = " + par[c]); c++; } p = 0; } if (im == 5) { int d = 0; while (d < im) { System.out.println("impar[" + d + "] = " + impar[d]); d++; } im = 0; } if (i == 14) { int d = 0; while (d < im) { System.out.println("impar[" + d + "] = " + impar[d]); d++; } int c = 0; while (c < p) { System.out.println("par[" + c + "] = " + par[c]); c++; } } } } }