Splitted print class into printUnformated and printFormated.

And fixed errors in print Unformated
This commit is contained in:
Leonardo Brandenberger
2021-11-05 16:16:39 +01:00
parent 5020d4552a
commit a65f1192a2
2 changed files with 9 additions and 4 deletions
+7 -3
View File
@@ -29,7 +29,7 @@ public class TextOutput {
int letterLenght = letters.length;
int lettersPrinted = 0;
do {
System.out.println();
//System.out.println();
currentLength = 0;
for (int i = 0; i < columnWidth; i++) {
if (letterLenght > 0) {
@@ -39,8 +39,11 @@ public class TextOutput {
currentLength++;
}
}
if(!(letterLenght == 0)){
System.out.println();
}
}
while (letterLenght > columnWidth);
while (letterLenght >= columnWidth);
}
else {
@@ -50,8 +53,9 @@ public class TextOutput {
}
System.out.print(word + " ");
currentLength += word.length() + 1;
if(words.length == word
}
}
System.out.println(); //added
}
}