Skip to content

Instantly share code, notes, and snippets.

@leehs99
Created July 14, 2018 16:42
Show Gist options
  • Save leehs99/169ecf6776694fef01086590739dce79 to your computer and use it in GitHub Desktop.
Save leehs99/169ecf6776694fef01086590739dce79 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
// Object : A/B
// Name : Hyeon Soo Lee
// Email : 99leehs@gmail.com
public class Ex08 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double A = sc.nextDouble();
double B = sc.nextDouble();
System.out.println(A/B);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment