1
0
Fork 0

das vorherige

main
ERANZER 2024-01-09 13:40:01 +01:00
parent f3af3f39e0
commit 1c024fdbfc
1 changed files with 6 additions and 6 deletions

View File

@ -264,10 +264,10 @@ public class Spreadsheet {
while (m.find()) { // m.find() must always be used before m.group()
String s = m.group();
if(!s.isEmpty()) {
if((int)s.charAt(0)>=(int)'A'&&(int)s.charAt(0)<=(int)'Z' && cells[(Integer.parseInt(s.substring(1)))-1][(int)s.charAt(0)-(int)'A'].isEmpty())
if((int)s.charAt(0)>=(int)'A'&&(int)s.charAt(0)<=(int)'Z' && get(s).isEmpty())
continue;
if(first && (int)s.charAt(0)>=(int)'A'&&(int)s.charAt(0)<=(int)'Z') {
res=Integer.parseInt(cells[(Integer.parseInt(s.substring(1)))-1][(int)s.charAt(0)-(int)-'A'].getValue());
res=Integer.parseInt(get(s));
first=false;
}else if(first) {
res=Integer.parseInt(s);
@ -283,16 +283,16 @@ public class Spreadsheet {
}else if((int)s.charAt(0)>=(int)'A'&&(int)s.charAt(0)<=(int)'Z'){
switch(operation) {
case("+"):
res+=Integer.parseInt(cells[(Integer.parseInt(s.substring(1)))-1][(int)s.charAt(0)-(int)'A'].getValue());
res+=Integer.parseInt(get(s));
break;
case("-"):
res-=Integer.parseInt(cells[(Integer.parseInt(s.substring(1)))-1][(int)s.charAt(0)-(int)'A'].getValue());
res-=Integer.parseInt(get(s));
break;
case("*"):
res*=Integer.parseInt(cells[(Integer.parseInt(s.substring(1)))-1][(int)s.charAt(0)-(int)'A'].getValue());
res*=Integer.parseInt(get(s));
break;
case("/"):
res/=Integer.parseInt(cells[(Integer.parseInt(s.substring(1)))-1][(int)s.charAt(0)-(int)'A'].getValue());
res/=Integer.parseInt(get(s));
break;
}
}else {