Skip to content

Instantly share code, notes, and snippets.

View rohangho's full-sized avatar

Rohan Ghosh rohangho

  • Tokopedia
  • India
View GitHub Profile
package com.example.my_map;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.app.ActivityCompat;
import androidx.fragment.app.FragmentActivity;
import android.Manifest;
import android.content.pm.PackageManager;
import android.location.Location;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
public class Accountant {
int id;
String name;
public Accountant(int id, String name) {
this.id = id;
this.name = name;
}