Discuss / Java / emm

summons_M

#1 Created at ... [Delete] [Delete and Lock User]

// 字符和字符串

public class Str {

public static void main(String[] args) {

        int a = 72;

        int b = 105;

        int c = 65281;

        // FIXME:

        String s ="" + a + b + c;

        System.out.println(s);

}

}


  • 1

Reply