Ferix

RSOJava#7

Nov 25th, 2020
630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. import java.lang.Math;
  2.  
  3. public class MyClass {
  4.     public static void main(String args[]) {
  5.    
  6.         for(double x=0; x<=2*(Math.PI); x+=(Math.PI/10)){
  7.             double y = (Math.sin(x)/x);
  8.             System.out.println(y);
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment