为什么杭电acm2028提交成功的在我的vC6.0运行出错?
#include<iostream>#include<string>usingnamespacestd;intmain(){__int64n,i,j;__int64a[1...
#include<iostream>
#include<string>
using namespace std ;
int main()
{
__int64 n , i, j ;
__int64 a[130] , num ;
while(cin >> n)
{
__int64 m = 1 , max ;
for(i = 0 ;i < n ;i++)
{
cin >> a[i] ;
m *= a[i] ;
} //最小公倍数一定 <= 所有数的乘积;
max = a[0] ;
for(i = 0 ; i < n; i++)
if(max < a[i]) max = a[i] ; //最小公倍数一定 >= 最大数 ;
for(i = max ;i <= m ;i++)
{
num = 0 ;
for(j = 0 ; j < n ;j++)
{
if(i%a[j]) break ;
num++ ;
}
if(num == n) break ;
}
cout << i << endl ;
}
return 0 ;
}
出错提示:2028\2028.cpp(8) : error C2679: binary '>>' : no operator defined which takes a right-hand operand of type '__int64' (or there is no acceptable conversion) 展开
#include<string>
using namespace std ;
int main()
{
__int64 n , i, j ;
__int64 a[130] , num ;
while(cin >> n)
{
__int64 m = 1 , max ;
for(i = 0 ;i < n ;i++)
{
cin >> a[i] ;
m *= a[i] ;
} //最小公倍数一定 <= 所有数的乘积;
max = a[0] ;
for(i = 0 ; i < n; i++)
if(max < a[i]) max = a[i] ; //最小公倍数一定 >= 最大数 ;
for(i = max ;i <= m ;i++)
{
num = 0 ;
for(j = 0 ; j < n ;j++)
{
if(i%a[j]) break ;
num++ ;
}
if(num == n) break ;
}
cout << i << endl ;
}
return 0 ;
}
出错提示:2028\2028.cpp(8) : error C2679: binary '>>' : no operator defined which takes a right-hand operand of type '__int64' (or there is no acceptable conversion) 展开
3个回答
展开全部
把__int64 改成long试试
参考以下文档,
http://blog.csdn.net/shiwei408/article/details/7463476
修改方法:
方法一、n不要定义成__int64类型
long n ;
方法二、cin >> n ; 改成 scanf("%l64d" , &n );
参考以下文档,
http://blog.csdn.net/shiwei408/article/details/7463476
修改方法:
方法一、n不要定义成__int64类型
long n ;
方法二、cin >> n ; 改成 scanf("%l64d" , &n );
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看提示似乎是vC6.0没有提供接受__int64作为参数的输出运算符……
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询