1
0
Fork 0

Spreadsheet loop bis man stop schreibt

main
Dr.Janson 2024-01-06 15:24:05 +01:00
parent ada8f538a2
commit 98026d2e20
1 changed files with 23 additions and 2 deletions

View File

@ -1,6 +1,7 @@
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.
@ -11,6 +12,8 @@ public class Axel {
public static void main(String[] args) throws FileNotFoundException {
Spreadsheet spr = new Spreadsheet(10,10);
@SuppressWarnings("resource")
Scanner input = new Scanner(System.in);
spr.put("A3", "123");
spr.put("A2", "1");
@ -19,9 +22,27 @@ public class Axel {
spr.put("J5", "=7*6");
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.saveCsv("/tmp/test.csv");
spr.put(cell, form);
}while(true);
spr.saveCsv("tmp/test.csv");
// TODO: You might want to put "UI loop" for entering value and formulas here resp. in some UI methods.
}