Skip to content

Instantly share code, notes, and snippets.

@msomu
Created October 31, 2014 12:58
Show Gist options
  • Select an option

  • Save msomu/57e910c959e972b9d08f to your computer and use it in GitHub Desktop.

Select an option

Save msomu/57e910c959e972b9d08f to your computer and use it in GitHub Desktop.
This is a basic add from user
import java.util.Scanner;
public class BacisCalc {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double fnum,snum,answer;
System.out.println("Enter the First number: ");
fnum = sc.nextDouble();
System.out.println("Enter the Second number: ");
snum = sc.nextDouble();
answer = fnum + snum;
System.out.println(answer);
}
}
Enter the First number:
53.5
Enter the Second number:
65.9
119.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment