while循环输出如下语句: 2*5=10 4*10=40 6*15=90 …… ?*100=?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了while循环输出如下语句: 2*5=10 4*10=40 6*15=90 …… ?*100=?相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; /** * @author 蓝色以太 while循环输出如下语句: 2*5=10 4*10=40 6*15=90 …… ?*100=? */ public class While { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入层高:"); int num = sc.nextInt(); int i = 1; while (i <= num) { System.out.println(i * 2 + "*" + i * 5 + "=" + (i * 2 * i * 5)); i++; } } }
以上是关于while循环输出如下语句: 2*5=10 4*10=40 6*15=90 …… ?*100=?的主要内容,如果未能解决你的问题,请参考以下文章