Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void main(String[] args) {
- HashMap<String, Object> mapa = new HashMap<>();
- Integer integer;
- Double penetration;
- integer = retInt();
- mapa.put("act", integer);
- // penetration = (double)mapa.get("act");
- penetration = (double) (int) mapa.get("act");
- }
- public static Integer retInt() {
- return 10;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement