Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static Long steamidtoacountid(Long steam64bitid) {
        return (steam64bitid - 76561197960265728l);
    }

    public static Long steamidtoacountid(String steamId) {
        return steamidtoacountid(Long.valueOf(steamId));

    }
}