Topic: 求助……编写一个程序,输出1到9的乘法表……(已解决) |
Print this page |
1.求助……编写一个程序,输出1到9的乘法表……(已解决) | Copy to clipboard |
Posted by: 8261669 Posted on: 2006-09-04 20:51 如图所示:
我写出了前两行的代码,关键是他不能分行输出,这是代码: public class table{ public static void main(String args[]){ for(int a=1;a<=81;a++){ if(a<10){ System.out.print(a); System.out.print(" ");} if((a<20)&&((a%2)==0)){ System.out.print(a); System.out.print(" ");} 编译通过,只不过执行时全部出现在1行,想了半天,也想不出问题所在…… 请指点下…… |
2.Re:求助……编写一个程序,输出1到9的乘法表…… [Re: 8261669] | Copy to clipboard |
Posted by: lwfllr Posted on: 2006-09-04 21:27 用println()换行~~ |
3.Re:求助……编写一个程序,输出1到9的乘法表…… [Re: 8261669] | Copy to clipboard |
Posted by: lwfllr Posted on: 2006-09-04 21:32 for(int a=1;a<=81;a++){ if(a<10){ System.out.print; System.out.print(" ");} if((a<20)&&((a%2)==0)){ System.out.print; System.out.print(" ");} 不过你这个是输出乘法表吗?~~ 输出数字来的吧?~~ for(int i=1;i<10;i++){ for(int j=1;j<10;j++){ System.out.print(i*j+" "); } System.out.println(); } |
4.Re:求助……编写一个程序,输出1到9的乘法表…… [Re: 8261669] | Copy to clipboard |
Posted by: 8261669 Posted on: 2006-09-04 21:47 弄出来了,谢谢…… 代码如下:public class table{ public static void main(String args[]){ for(int a=1;a<=9;a++){ for(int b=1;b<=9;b++){ System.out.print(a*b+" ");} System.out.println();} }} 当时我的思路不对,现在想想真惭愧…… 我还要加倍努力…… 谢谢坛友的帮助…… |
5.Re:求助……编写一个程序,输出1到9的乘法表……(已解决) [Re: 8261669] | Copy to clipboard |
Posted by: lwfllr Posted on: 2006-09-04 21:51 不客气~~ 我也刚开始学不久~~ 相互帮助一起进步啊~~ 不过我现在要停一小段时间了~~ 没电脑给我敲代码~~ 郁闷中~~ |
6.Re:求助……编写一个程序,输出1到9的乘法表……(已解决) [Re: 8261669] | Copy to clipboard |
Posted by: 8261669 Posted on: 2006-09-04 22:30 晕……怎么没电脑呢……那在哪上的网呢…… 我们一起努力…… |
7.Re:求助……编写一个程序,输出1到9的乘法表……(已解决) [Re: 8261669] | Copy to clipboard |
Posted by: lwfllr Posted on: 2006-09-04 23:00 我是在我朋友家里用电脑~~ 过两天就没得用了~~ |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |