add lab 14

This commit is contained in:
Rémi Heredero 2022-03-24 22:52:07 +01:00
parent c22553f0d5
commit 99762353e9
7 changed files with 8 additions and 1 deletions

Binary file not shown.

Binary file not shown.

BIN
lib/fungraphics_1.5.6.jar Normal file

Binary file not shown.

View File

@ -52,7 +52,7 @@ public class ReadFileApplication {
Integer.parseInt(str[6])
);
lines.add(new Line(p1, p2, color));
} while (!line.isEmpty());
} while (true);
System.out.println(lines.size() + " shapes found in csv file.");
csvReader.close();

Binary file not shown.

View File

@ -0,0 +1,7 @@
package lab14_recursivity;
public class App {
public static void main(String[] args) throws Exception {
System.out.println("Hello, World!");
}
}