45 lines
1.8 KiB
Java
45 lines
1.8 KiB
Java
package de.hs_mannheim.informatik.spreadsheet;
|
|
|
|
import java.io.FileNotFoundException;
|
|
import java.util.Scanner;
|
|
|
|
/**
|
|
* Part of a simplified spreadsheet system for the PR1 programming lab at Hochschule Mannheim.
|
|
*
|
|
* @author Oliver Hummel
|
|
*/
|
|
public class Axel {
|
|
|
|
public static void main(String[] args) throws FileNotFoundException {
|
|
Scanner sc = new Scanner(System.in);
|
|
System.out.println("\nAxel(ExcelFakeVon2211482): ");
|
|
System.out.print("\nTabellengröße(ReihenZwischen1-99 SpaltenZwischen1-26): ");
|
|
Spreadsheet spr = new Spreadsheet(sc.nextInt(), sc.nextInt());
|
|
boolean stop = false;
|
|
|
|
while (!stop) {
|
|
|
|
try {
|
|
System.out.println(spr);
|
|
System.out.println("\nHILFE (Für eine Anleitung.)\n");
|
|
System.out.print("KOMMANDO: ");
|
|
stop = spr.cellInput();
|
|
} catch(Exception e){
|
|
System.out.println("\nEingabe unzulässig!");
|
|
System.out.println("\nEnter zum fortfahren.");
|
|
sc.nextLine();
|
|
sc.nextLine();
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
public static void help(){
|
|
System.out.println("\nEinlesen: \nKOMMANDO Dateipfad Trennzeichen StartzelleObenLinks (Alles mit Leerzeichen getrennt.) e.g.:\nEINLESEN Axel/resources/zahlen.csv , A1");
|
|
System.out.println("\nSpeichern: \nKOMMANDO Dateipfad (Mit Leerzeichen getrennt.) e.g.:\nSPEICHERN Axel/resources/zahlen.csv");
|
|
System.out.println("\nFormel Tabellenansicht: \nKOMMANDO e.g.:\nFORMELN");
|
|
System.out.println("\nZellen Werte/Formeln zuweisen: \nZELLE ZUWEISUNG (Mit Leerzeichen getrennt, Zelle beginnend mit Buchstabe und Zuweisung beginnend mit =.) e.g.:\nA1 =A5+15\n" +
|
|
"\nZELLE FORMELZUWEISUNG (Formelzuweisung mit Startzelle bis Endzelle getrennt durch :.) e.g.:" +
|
|
"\nA2 =SUMME(A1:H10)\t\tA3 =PRODUKT(A1:H10)\t\tA4 =MITTELWERT(A1:H10)\t\tA5 =STABW(A1:H10) (Standartabweichung)\t\tA6 =MIN(A1:H10)\t\tA7 =MAX(A1:H10)");
|
|
}
|
|
} |