public class Tilde { public static void main(String args[]) { int x=3; int y=~x; System.out.println(x); System.out.println(y); } ...
確定! 回上一頁