import java.awt.*; import javax.swing.*; public class Spreadsheet { public static void main(String[] args) { final int N = 20; JFrame frame = new JFrame("Spreadsheet"); frame.setSize(300,300); JPanel sheet = new JPanel(); JScrollPane jsp = new JScrollPane(sheet); sheet.setLayout(new GridLayout(N, 1)); for (int i=0; i