| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 821 人关注过本帖
标题:presentation error
取消只看楼主 加入收藏
heartnheart
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
帖 子:335
专家分:1096
注 册:2009-7-10
结帖率:100%
收藏
已结贴  问题点数:50 回复次数:3 
presentation error
在一个论坛上做题,改了半天老是presentation error,望高手指正
刚刚忘了贴网址……http://

程序代码:
import java.util.*; 
public class Main { 

 
    public static void main(String[] args) { 
        int n,k; 
        Scanner scan = new Scanner(System.in); 
        while(scan.hasNext()){ 
        n = scan.nextInt(); 
        k = scan.nextInt(); 
        int[][] temp = new int[n][k]; 
        int[] sum = new int[n]; 
        for(int i = 0; i < temp.length; i++){ 
            for (int j = 0; j < temp[0].length; j++){ 
                temp[i][j] = scan.nextInt(); 
                sum[i] += temp[i][j]; 
            } 
        } 
        int [] average = new int[k]; 
        for (int i = 0; i < temp[0].length; i++){ 
            for (int j = 0; j < temp.length; j++ ) 
                average[i] += temp[j][i]; 
        } 
        for (int i = 0; i < sum.length; i++) 
            System.out.print(sum[i] + " "); 
        System.out.println(); 
        double a; 
        for (int i = 0; i < average.length; i++){ 
            a = average[i]/(double)n; 
            if(a * 10 % 10 < 5) 
            System.out.print((int)a + " "); 
            else 
                System.out.print((int)(a +1) + " "); 
        } 
        System.out.println(); 
        System.out.println(); 
        } 
    } 

 
} 


[ 本帖最后由 heartnheart 于 2010-2-21 22:22 编辑 ]
搜索更多相关主题的帖子: presentation 
2010-02-21 22:01
heartnheart
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
帖 子:335
专家分:1096
注 册:2009-7-10
收藏
得分:0 
50分没人要吗?O(∩_∩)O~
2010-02-21 22:59
heartnheart
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
帖 子:335
专家分:1096
注 册:2009-7-10
收藏
得分:0 
楼上果然是新手……oj的数据不仅仅是给的几个……
J2SE没有大虾么
2010-02-22 09:43
heartnheart
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
帖 子:335
专家分:1096
注 册:2009-7-10
收藏
得分:0 

建议你去读读OJ的FAQ
另外,问题我找到了,谢谢你啊
2010-02-22 16:02
快速回复:presentation error
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.028476 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved