今天在网上找了一些java初学者的题进行了练习,虽然做的过程中出现了一些错误,但是圆满解决,所以分享给大家。
public class Test7 {
public static void main(String[] args) {
for(int i=1;i<=9;i++) {
//控制行数
for(int k=1;k<=i;k++) {
//控制每行的列数
System.out.print(k+"*"+i+"="+(i*k)+"\t");
}
System.out.println();
}
} }
通过百度了解其中具体的算法实现
身体质量指数是BMI指数(身体质量指数,简称体质指数),是目前国际上常用的衡量人体胖瘦程度
以及是否健康的一个标准。
计算公式为:BMI=体重(千克)除以身高(米)的平方。
public class Test7 {
public static void main(String[] args) {
// 1、要求用户输入合法的身高和体重值
Scanner sc = new Scanner(System.in);
double high = -1;
while (true) {
// while(true)是个死循环,则必须在循环体中配合break跳出
System.out.println("身高值:(米)");
String ss = sc.nextLine();
try {
high = Double.parseDouble(ss);
if (high > 0 && high < 3)
break;
System.out.println("要求输入合法的身高值,例如0.1到3之间");
} catch (Exception e) {
System.out.println("要求输入1.23之类的浮点数!");
}
}
double height = -1;
while (true) {
System.out.println("体重:(千克)");
String ss = sc.nextLine();
try {
height = Double.valueOf(ss);
if (height > 0 && height < 500)
break;
System.out.println("要求输入合法的体重值,例如0到500之间");
} catch (Exception e) {
System.out.println("要求输入66.23之类的浮点数!");
}
}
System.out.println("体重:" + height + "公斤,身高:" + high + "米");
// 2、计算对应用户的BMI指数
double res = height / (high * high);
int kk = (int) (res * 10);
// 3、判断胖瘦输出结果
if (kk <= 184) {
System.out.println("偏瘦!");
} else if (kk <= 239)
System.out.println("正常");
else if (kk <= 279)
System.out.println("过重");
else
System.out.println("肥胖");
} }
public class Test8 {
public static void main(String[] args) {
int k1 = 10, k2 = 100;
System.out.println("k1=" + k1 + ",k2=" + k2);
k1=k1+k2;
k2=k1-k2;
k1=k1-k2;
System.out.println("k1=" + k1 + ",k2=" + k2);
}
}
int k1 = 1, k2 = 2, k3 = 3;
int max;
int min = max = k1;
if (max < k2)max = k2;
if (max < k3)max = k3;
if (min > k2)min = k2;
if (min > k3)min = k3;
System.out.println("min:" + min + ",max:" + max);
分析:因为循环次数已知,所以最佳使用for
一般建议开发中先完成重要的核心要求,再考虑进一步完善
public class Test8 {
public static void main(String[] args) {
for (int k = 1; k <= 100; k++) {
if(k%2!=0)
System.out.println(k);
}
} }
进一步需求:每行输出6个
int count = 0;
for (int k = 1; k <= 100; k++) {
if (k % 2 != 0) {
System.out.print(k + "\t");
if (++count % 6 == 0)
System.out.println();
} }
做出之后,然后想出了一种简便做法
奇数+2=奇数,而且1-100之间的最小奇数为1
public class Test8 {
public static void main(String[] args) {
int count = 0;
for (int k = 1; k <= 100; k = k + 2) {
System.out.print(k + "\t");
if (++count % 6 == 0)
System.out.println();
}
} }
while(true)----break 一般用于无法提前预知循环次数
public class Test8 {
public static void main(String[] args) {
int res = 0;
int k = 1;
while (true) {
res += k++;
if (k > 100)
break;
}
System.out.println("1+2+3+...+100=" + res);
} }
do/while—break; 一般不使用do…while(true) 一般用于至少需要执行一次的场景
public class Test8 {
public static void main(String[] args) {
int res = 0;
int k = 1;
do {
res += k++;
if (k > 100)
break;
} while (true);
System.out.println("1+2+3+...+100=" + res);
} }
for循环
public class Test8 {
public static void main(String[] args) {
int res = 0;
int k = 1;
for(;;) {
//三个表达式均为空
res+=k++;
if(k>100)
break;
}
System.out.println("1+2+3+...+100=" + res);
} }
public class Test8 {
public static void main(String[] args) {
int res = 0;
for (int k = 1;;) {
//表达式1不为空,剩余为空
res += k++;
if (k > 100)
break;
}
System.out.println("1+2+3+...+100=" + res);
} }
public class Test8 {
public static void main(String[] args) {
int res = 0;
for (int k = 1;; k++) {
if (k > 100)
break;
res += k;
}
System.out.println("1+2+3+...+100=" + res);
} }
public class Test8 {
public static void main(String[] args) {
int res = 0;
for (int i = 1; i < 11; i++) {
if (i % 2 == 0)
continue;
res += i;
}
System.out.println("2+4+...+10=" + res);
} }
public class Test8 {
public static void main(String[] args) {
int k=5;
for(int i=1;i<=k;i++) {
for(int j=0;j<i;j++) {
System.out.print("*");
}
System.out.println();
}
} }
public class Test8 {
public static void main(String[] args) {
int k=5;
for(int i=1;i<=k;i++) {
for(int j=0;j<k-i;j++)
System.out.print(" ");
for(int j=0;j<i;j++)
System.out.print("*");
System.out.println();
}
} }
首先我们寻找规律 空格数为【5-行数】,后续输出的 * 个数为【 2*行数-1 】
上半部分的输出
int k=5;
for(int i=1;i<=k;i++) {
for(int j=0;j<k-i;j++)
System.out.print(" ");
for(int j=0;j<2*i-1;j++)
System.out.print("*");
System.out.println();
}
下半部分输出
for(int i=k-1;i>0;i--) {
for(int j=0;j<k-i;j++)
System.out.print(" ");
for(int j=0;j<2*i-1;j++)
System.out.print("*");
System.out.println();
}
public class Test9 {
public static void main(String[] args) {
long res = 8;
int count=0;
// 不知道循环次数,所以可以使用while或者do/while
while (true) {
res *= 2;
count++;
if (res > 884813000)
break;
}
System.out.println("共对折了"+count+"次!");
} }
我们也可以用for循环进行编写
public class Test9 {
public static void main(String[] args) {
long res = 8;
int count;
for (count = 1;; count++) {
res *= 2;
if (res > 884813000)
break;
}
System.out.println("共对折了" + count + "次!");
} }