51Testing软件测试论坛
标题:
新手请教
[打印本页]
作者:
rellan
时间:
2009-6-21 12:02
标题:
新手请教
public class achievement
{
public static void main(String[] args)
{
int x=2;
for (x=2;x<10;x++)
{
int y=2;
for (y=2;y<10;y++)
{
System.out.println(x+"*"+y+"="+(x*y));
System.out.println("");
}
System.out.println("");
}
}
}
这个程序中
System.out.println(x+"*"+y+"="+(x*y));
System.out.println("");
为什么这样写 (x+"*"+y+"="+(x*y)); 表示什么意思呢
作者:
千里
时间:
2009-6-21 12:28
"*"引号内表示字符,*在不加引号的时候是运算符。
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2