import java.util.Scanner;
// 12279 - Emoogle Balance - Java
public class EmoogleBalance {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int currentCase = 1;
int noOfCases;
int currentVal;
int total;
noOfCases = scanner.nextInt();
while(noOfCases != 0) {
total = 0;
for(int i = 0; i < noOfCases; i++) {
currentVal = scanner.nextInt();
if(currentVal == 0) total--;
else total ++;
}
System.out.println("Case " + currentCase + ": " + total);
noOfCases = scanner.nextInt();
currentCase++;
}
}
}
10/08/2013
12279 - Emoogle Balance - Java
Subscribe to:
Post Comments (Atom)
Thanks, For the Answer
ReplyDelete