# liu **Repository Path**: 20145235/liu ## Basic Information - **Project Name**: liu - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-03-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #liu import java.util.Arrays; public class Score2 { public static void main(String[] args) { int[] scores = new int[10]; for(int score : scores) { System.out.printf("%2d",score); } System.out.println(); Arrays.fill(scores,60); for(int score : scores) { System.out.printf("%3d",score); } } }