Write a method named flipCoins
that accepts as its parameter a Scanner
for an input file.
Assume that the input file data represents results of sets of coin flips that are either heads (H) or tails (T) in either upper or lower case, separated by at least one space.
Your method should consider each line to be a separate set of coin flips and should output to the console the number of heads and the percentage of heads in that line, rounded down to the nearest integer (truncated).
If this percentage is more than 50%, you should print a "There were more heads!" message.
For example, consider the following input file:
H T H H T
T t t T h H
h
For the input above, your method should produce the following output:
3 heads (60%)
There were more heads!
2 heads (33%)
1 heads (100%)
There were more heads!
The format of your output must exactly match that shown above. You may assume that the Scanner
contains at least 1 line of input, that each line contains at least one token, and that no tokens other than h, H, t, or T will be in the lines.