2014年3月15日
摘要: package checkTheID;import java.util.Scanner;public class CheckTheID { //学号6位数字,校验位第7位。也可以修改。 //用户输入学号及校验位,程序检测用户输入的学号是否正确。 //校验位=(1*(第1位数字)+2*(第2位数字)+3*(第3位数字) //+4*(第4位数字)+5*(第5位数字)+6*(第6位数字))%10 public static final int IDLENGTH = 7; public static void main(String[] args) { ... 阅读全文
posted @ 2014-03-15 14:09 Sweet Smile 阅读(657) 评论(0) 推荐(0) 编辑
摘要: //用户输入打印的杨辉三角的行数line,输出:打印杨辉三角(a56爆大奖在线娱乐数字的宽度是4.)package printPascalTriangle2;import java.util.Scanner;public class PrintPascalTriangle2 { public static void main(String[] args) { Scanner console = new Scanner(System.in); System.out.print("input the lines > 1:"); int lin... 阅读全文
posted @ 2014-03-15 09:44 Sweet Smile 阅读(737) 评论(0) 推荐(0) 编辑