Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created February 17, 2017 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/00438b5e81156db3b3f7c41488c30882 to your computer and use it in GitHub Desktop.
Save folivetti/00438b5e81156db3b3f7c41488c30882 to your computer and use it in GitHub Desktop.
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
double A, B, media;
Scanner sc = new Scanner(System.in);
A = sc.nextDouble();
B = sc.nextDouble();
media = (3.5*A + 7.5*B)/11;
System.out.printf("MEDIA = %.5f\n", media);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment