Advertisement
Blonk

Untitled

Dec 5th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         double x;
  8.        
  9.         System.out.println("x      |      y");
  10.         System.out.println("---------------");
  11.  
  12.  
  13.         for (x = -10; x <= 10; x = x+0.5){
  14.             System.out.println(x + "            " + (x*x));
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement