Copy The Code then Paste it in the Notepad , Then Save Name it "Calculator.java"--------------------------------------------------------------------------------------------------import java.sql.*;import javax.swing.*;import javax.swing.event.*;import...
all you need for Programming for java is Notepad++ or you can use any application like JCreator , eclipse or anything you want :)...
i made this blog to share all the Basic things that i know :)if you need something to help , you can PM me :)Free Programs for Java and Visual Basic and Other Language and Other Tutorial for photoshop and other things ..this Blog is for only New to p...
public class Hellow_world { public static void main(String args[]){ System.out.print("Hello World!"); } }Output: Hello World!
This code is for getting an information from the user ..--------------------------------------------------import java.util.Scanner;public class info{ public static void main (String[]args) throws Exception{ Scanner input = new Scanner(System.in);...
a while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating If Statement----------------------------p...
public class FooBizBaz { public static void main(String args []){ for(int number = 1; number<=50; number++){ System.out.print(number); if((number%3)==0){ System.out.print(" foo");} if((number%5)==0){ System.out.print(" biz");} if((num...