LoginSignup
3
0

More than 5 years have passed since last update.

わーい、すごーい

Posted at
public class Friends {
    public static void main(String[] args) {
        wai();
        sugoi();
        tanoshii();
        friends( "クソリプ" );
    }

    public static void wai() {
        System.out.println( "わーい" );
    }

    public static void sugoi() {
        System.out.println( "すごーい" );
    }

    public static void tanoshii() {
        System.out.println( "たのしー" );
    }

    public static void friends( String skill ) {
        System.out.println( String.format("君は%sがとくいな、フレンズなんだね!!", skill) );
    }
}

便乗。
http://qiita.com/t_ishida/items/bae7e62950d81f427f13

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0