-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathCircle.java
34 lines (32 loc) · 950 Bytes
/
Circle.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package circle;
import java.io.*;
import java.util.*;
public class Circle {
public static void main(String[] args) throws IOException {
FileReader file = new FileReader("input.txt");
Scanner sc = new Scanner(file);
String str = sc.nextLine();
char[] ch = str.toCharArray();
long flag = 0;
for (char aCh : ch) {
String symbol = Character.toString(aCh);
switch (symbol) {
case ("6"):
flag++;
break;
case ("8"):
flag = flag + 2;
break;
case ("9"):
flag++;
break;
case ("0"):
flag++;
break;
}
}
FileWriter fileOut = new FileWriter("output.txt");
fileOut.write(String.valueOf(flag));
fileOut.close();
}
}