Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Main {
- public static void main(String[] args) {
- System.out.println(" x y ");
- System.out.println("-----------");
- double x = -10;
- for (x = x ; x <= 10 ; x = x + 0.5){
- double y = x*x;
- System.out.println(x + " \t " + y);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment