mirror of
https://github.com/Rushilwiz/APCS.git
synced 2025-04-05 13:00:20 -04:00
9 lines
191 B
Java
9 lines
191 B
Java
public class ProbTest {
|
|
|
|
public static void main(String[] args) {
|
|
for (int i = 0; i < 1080; i++)
|
|
System.out.println(-0.5 * Math.cos((Math.PI/180) * i) + 0.5);
|
|
|
|
|
|
}
|
|
} |