Deleted useless class.

This commit is contained in:
Fabian Becker 2013-02-25 16:17:24 +01:00
parent 0e9107523e
commit ef33adf805

View File

@ -1,20 +0,0 @@
package eva2.optimization.tools;
/**
* Created by IntelliJ IDEA.
* User: streiche
* Date: 10.08.2004
* Time: 17:52:37
* To change this template use File | Settings | File Templates.
*/
public class ModuloTest {
public static void main(String[] args) {
double d = 0.75, p = 1.45;
int w = 1, e = 2;
System.out.println(d+"%"+w+" = "+ (d%w));
System.out.println(d+"%"+e+" = "+ (d%e));
System.out.println(d+"/"+w+" = "+ ((int)(d/w)));
System.out.println(d+"/"+p+" = "+ ((int)(d/p)));
System.out.println(d+"/"+e+" = "+ ((int)(d/e)));
}
}