摘要: public class Temp { public static void print(int num) { for (int i = 31; i >= 0; i--) { System.out.print(((num & (1 << i)) == 0 ? "0" : "1")); } Syste 阅读全文
posted @ 2022-01-22 17:42 AngDH 阅读(56) 评论(0) 推荐(0) 编辑