daily_automated

This commit is contained in:
paolo.iocco
2023-03-13 08:36:51 +00:00
parent 5347889cd2
commit f29dcc4188
5439 changed files with 1065799 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Test_Java</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>
</projectDescription>

Binary file not shown.

View File

@@ -0,0 +1,37 @@
/*
* First test - 12.01.2010
*/
//import java.lang.Math.*;
public class JavaTest {
public static void main(String[] args) {
int a,col=0;
System.out.println("\nFirst test.");
for(a=0;a<0x100;a++) {
if(a%16==0){
System.out.println("");
}
System.out.format(" %02x",a);
}
System.out.println("\n\n-This was a HEX Table.\n");
double b,c;
for(c=0;c<2*Math.PI;c+=0.1) {
b=Math.sin(c);
a=(int)((b+1)*128);
System.out.format(" %02x",a);
col++;
if(col%16==0){
System.out.println("");
}
}
System.out.println("\n\n-This was a SIN(x) table.\n");
//End of the program
System.out.println("\nEnd.\n");
}
}