Skip to content
Snippets Groups Projects
Commit b7629e88 authored by Samuel Turpin's avatar Samuel Turpin :computer:
Browse files

blabla

parent 9ac1ef47
No related branches found
No related tags found
No related merge requests found
Showing
with 110 additions and 1 deletion
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/tp03_res.jar"/>
<classpathentry kind="lib" path="lib/tp04-res.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
.project 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>dev_OO</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1710490098766</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
eclipse.preferences.version=1
encoding/<project>=UTF-8
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=17
{
"java.project.referencedLibraries": [
"lib/**/*.jar"
]
}
\ No newline at end of file
File added
package td05;
public class Mail
{
public static final double BASIS = 0.0;
private boolean express = false;
private String address = "";
public Mail(boolean b, String s)
{
}
public boolean isValid()
{
return true;
}
public double frank()
{
return 0.0;
}
}
package tp01;
class Book class Book
{ {
// class attributes // class attributes
......
package tp01;
public class HighScore public class HighScore
{ {
Score[] top; Score[] top;
......
package tp01;
public class Parameter public class Parameter
{ {
public static void main(String[] args) public static void main(String[] args)
......
package tp01;
import java.util.Random; import java.util.Random;
public class RandomSequence public class RandomSequence
......
package tp01;
public class Score public class Score
{ {
String n = "Empty"; String n = "Empty";
......
/* Classe Init Principale */ package tp01;
public class UseBook public class UseBook
{ {
public static void main(String[] args) public static void main(String[] args)
......
package tp01;
public class UseHighScore public class UseHighScore
{ {
public static void main(String[] args) public static void main(String[] args)
......
package tp02;
public class Competitor public class Competitor
{ {
private int t, s; private int t, s;
......
package tp02;
import java.util.Random; import java.util.Random;
public class Dice public class Dice
......
package tp02;
public class DicePlayer public class DicePlayer
{ {
private String nm; private String nm;
......
package tp02;
public class NDicePlayerGame public class NDicePlayerGame
{ {
private int acreate; private int acreate;
......
package tp02;
public class OneDicePlayerGame public class OneDicePlayerGame
{ {
public static void main(String[] args) public static void main(String[] args)
......
package tp02;
public class TwoDicePlayerGame public class TwoDicePlayerGame
{ {
DicePlayer p1, p2; DicePlayer p1, p2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment