forked from hummel/PR1-Spreadsheet
Spreadsheet loop bis man stop schreibt
parent
ada8f538a2
commit
98026d2e20
|
@ -1,6 +1,7 @@
|
||||||
package de.hs_mannheim.informatik.spreadsheet;
|
package de.hs_mannheim.informatik.spreadsheet;
|
||||||
|
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Part of a simplified spreadsheet system for the PR1 programming lab at Hochschule Mannheim.
|
* Part of a simplified spreadsheet system for the PR1 programming lab at Hochschule Mannheim.
|
||||||
|
@ -11,6 +12,8 @@ public class Axel {
|
||||||
|
|
||||||
public static void main(String[] args) throws FileNotFoundException {
|
public static void main(String[] args) throws FileNotFoundException {
|
||||||
Spreadsheet spr = new Spreadsheet(10,10);
|
Spreadsheet spr = new Spreadsheet(10,10);
|
||||||
|
@SuppressWarnings("resource")
|
||||||
|
Scanner input = new Scanner(System.in);
|
||||||
|
|
||||||
spr.put("A3", "123");
|
spr.put("A3", "123");
|
||||||
spr.put("A2", "1");
|
spr.put("A2", "1");
|
||||||
|
@ -19,9 +22,27 @@ public class Axel {
|
||||||
spr.put("J5", "=7*6");
|
spr.put("J5", "=7*6");
|
||||||
spr.put("J6", "=3/2");
|
spr.put("J6", "=3/2");
|
||||||
|
|
||||||
System.out.println(spr);
|
System.out.println("Schreibe 'stop' zum anhalten.");
|
||||||
|
do{
|
||||||
|
String command = "";
|
||||||
|
String form = "";
|
||||||
|
String cell= "";
|
||||||
|
System.out.println(spr);
|
||||||
|
System.out.println("Befehl (z.B. D4_=7*6): ");
|
||||||
|
command = input.nextLine();
|
||||||
|
if(command.contentEquals("stop"))
|
||||||
|
break;
|
||||||
|
for(int i = 3; i<command.length();i++) {
|
||||||
|
form+=command.charAt(i);
|
||||||
|
}
|
||||||
|
cell+=command.charAt(0);
|
||||||
|
cell+=command.charAt(1);
|
||||||
|
|
||||||
|
spr.put(cell, form);
|
||||||
|
|
||||||
|
}while(true);
|
||||||
|
|
||||||
spr.saveCsv("/tmp/test.csv");
|
spr.saveCsv("tmp/test.csv");
|
||||||
|
|
||||||
// TODO: You might want to put "UI loop" for entering value and formulas here resp. in some UI methods.
|
// TODO: You might want to put "UI loop" for entering value and formulas here resp. in some UI methods.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue