import java.util.Arrays;
import java.util.Scanner;
public class test5 {
public static int flag[] =new int[10];//判断状态: 0: 2次没中10;, 1 :补中 ;2:第一次全中
public static int[] finScore =new int[10];//每轮分数
public static int[][] eachScore = new int[10][3];//每次分数,最后一次若有3次另外算
/*
* 记录每轮的得分
* */
public static void getScore(int firstSore,int secondSore,int count ){
if(firstSore!=10){
eachScore[count][0] = firstSore;
if(10-firstSore>secondSore){
flag[count]=0;
eachScore[count][1]=secondSore;
finScore[count] =firstSore+secondSore;
System.out.println("本轮为"+(count+1)+"轮,2次都没全中哦~"+"本轮成绩为"+finScore[count]);
}else if(10-firstSore==secondSore){
fl