| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 395 人关注过本帖
标题:一道 ACM 不知道哪错了 求指点
只看楼主 加入收藏
形影
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2014-10-3
结帖率:0
收藏
已结贴  问题点数:10 回复次数:4 
一道 ACM 不知道哪错了 求指点
#include"stdio.h"
int main()
{
    int n,m,i,j,k,t,temp,ji,start;
    while(EOF!=scanf("%d",&n)&&n>0)
    {
    for(i=0;i<n;i++)
    {
    start=1;
    scanf("%d",&m);
    for(j=0;j<m;j++)
    {
      scanf("%d",&k);
      ji=k*start;
    if(start>k)
    {
        t=start;
        start=k;
        k=t;
    }
    while(start!=0)
    {
    temp=k%start;
    k=start;
    start=temp;
    }
    start=ji/k;
    }
    printf("%d\n",start);
    }
}
    return 0;
}
搜索更多相关主题的帖子: include start 
2014-10-03 18:55
erty1001
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:4
帖 子:331
专家分:1433
注 册:2014-8-31
收藏
得分:10 
简单说说:
EOF!=scanf("%d",&n)&&n>0  通过第一个条件推出,明显不能成立
2014-10-03 20:37
erty1001
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:4
帖 子:331
专家分:1433
注 册:2014-8-31
收藏
得分:0 
简单说说:
EOF!=scanf("%d",&n)&&n>0  通过第一个条件推出,明显不能成立
2014-10-03 20:37
形影
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2014-10-3
收藏
得分:0 
回复 2 楼 erty1001
能具体说说么
2014-10-03 21:13
形影
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2014-10-3
收藏
得分:0 
题目是求一组数据的最小公倍数
Input will consist of multiple problem instances. The first line of the input will contain a single integer indicating the number of problem instances. Each instance will consist of a single line of the form m n1 n2 n3 ... nm where m is the number of integers in the set and n1 ... nm are the integers. All integers will be positive and lie within the range of a 32-bit integer.
2014-10-03 21:15
快速回复:一道 ACM 不知道哪错了 求指点
数据加载中...
 
   



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

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