本帖最后由 翁发达 于 2012-9-9 01:17 编辑
老师给的题还有一道没做出来,哪位朋友帮忙看下,我哪里写出问题了?
题目:两国赛马,各出三匹。A国为上等马为a,中等马b,下等马c三匹,B国为上等马为x,中等马y,下等马z三匹。
用抽签决定赛马对阵情况。有人打听具体对阵信息,A国说他的上等马不和B国的上等马比,
他的下等马不和B国的上等马和下等马比,请编程序AB两国赛马的对阵情况?
public class SaiMa{
static char[] m = { 'a', 'b', 'c' };static char[] n = { 'x', 'y', 'z' };
public static void main(String[] args)
{
for (int i = 0; i < m.length; i++)
{
if (m == 'a' && n[j] == 'x')
{
continue;
}
else if (m == 'a' && n[j] == 'y') {
continue;
}
else if (m == 'c' && n[j] == 'x')
{
continue;
}
else if (m == 'b' && n[j] == 'z') {
continue;
}
else
System.out.println(m + " vs " + n[j]);
}
} |