里面要运用循环打出这代码的,麻烦大家教教我.用for循环打的.希望看清楚是Java语言编程,而不是C
#.
里面要运用循环打出这代码的,麻烦大家教教我.用for循环打的.希望看清楚是Java语言编程,而不是C
#.
public class MultiplyTable
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(j+"*"+i+"="+i*j+"\t");
if(i==j)
break;
}
System.out.println();
}
}
}
附:打印结果
public static void main(String[] args) ...{ for (int i = 1 ; i <= 9 ; i++) ...{ for (int j = 1 ; j <= i ; j++) ...{ System.out.print(i + "*" + j + "=" + i * j + " "); } System.out.println(); } }
我写了一个
public static void main(String[] args) ...{ for (int i = 1 ; i <= 9 ; i++) ...{ for (int j = 1 ; j <= i ; j++) ...{ System.out.print(i + "*" + j + "=" + i * j + " "); } System.out.println(); } }
你好:
很高兴由【搜搜問問】团队为您解答,
只要输入下面文本:
import java.applet.*; import java.awt.*; public class JiuJiuA extends Applet { String Result = ""; public void init() { Result = " 1 2 3 4 5 6 7 8 9 "; for(int i = 1; i < 10;i++) { Result += i; for(int j = 1;j <= i;j++) { if(i * j >= 10) { Result += " "; } else { Result += " "; } Result+=i * j; } Result+='\n'; } } public void paint(Graphics g) { g.setColor(Color.white); g.drawString(Result,800,60); } } 可能有问题,不知道能不能帮到你... 但是谢谢您给我回答问题的机会。