摘要: 一个简单的Java应用程序public class Hello{public static void main (String args[ ]){ System.out.println("这是一个简单的应用程序");}}源程序public class People{float hight,weigh... 阅读全文
posted @ 2015-09-14 18:02 Wei_java 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 求区间a到b(正整数)之间约数个数最多的数,并输出他的约数。约数是能整除x的正整数。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int div(int a) 8 { 9 int count,... 阅读全文
posted @ 2015-09-14 10:30 Wei_java 阅读(589) 评论(0) 推荐(0) 编辑