2013年3月17日

第三章程序实例

摘要: import java.util.*;public class Example3_1{ public static void main(String args[]){ Scanner reader = new Scanner(System.in);System.out.println("输入待移位的int型整数:");int x = reader.nextInt();System.out.println("输入位移量:");int n = reader.nextInt();System.out.println("左位移的结果:"+(x 阅读全文

posted @ 2013-03-17 21:26 低调小傻 阅读(176) 评论(0) 推荐(0) 编辑

导航