1个回答
展开全部
public class CountTest
{
/**
* @param args
*/
public static void main(String[] args)
{
Object[][] o = {{"1001","1002","1003"},{80,88,75},{99,93,85},{92,87,93}};
String str = "1001";
for (int i = 0; i < o[0].length; i++)
{
if(str.equals(o[0][i]))
{
System.out.println(str +"的成绩:");
for (int j = 1; j < o.length; j++)
{
System.out.print(o[j][i] + " ");
}
System.out.println();
}
}
}
}
{
/**
* @param args
*/
public static void main(String[] args)
{
Object[][] o = {{"1001","1002","1003"},{80,88,75},{99,93,85},{92,87,93}};
String str = "1001";
for (int i = 0; i < o[0].length; i++)
{
if(str.equals(o[0][i]))
{
System.out.println(str +"的成绩:");
for (int j = 1; j < o.length; j++)
{
System.out.print(o[j][i] + " ");
}
System.out.println();
}
}
}
}
追问
我是要自己输入成绩和学号 不是已经定义完了的阿
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |