为什么我写的这个程序只能在codeblocks上运行而不能在VC++6.0上运行呀 哪里出错了请指点~~~谢大神!
#include<stdio.h>#include<string.h>#include<math.h>constintmaxn=10010;intfast_power(i...
#include<stdio.h>
#include<string.h>
#include<math.h>
const int maxn = 10010;
int fast_power(int a,int b)
{
int res = 1;
int tmp = a;
while(b)
{
if(b&0x1) res *= tmp;
tmp *= tmp;
b >>= 1;
//printf("%d\n",res);
}
//printf("%d\n",res);
return res;
}
int main()
{
int p_cofficient[maxn],q_cofficient[maxn],x_self[maxn];
int p,q,x,n,m,ans = 0,i,j,x_index;
while(scanf("%d%d%d%d%d",&p,&q,&x,&n,&m)!=EOF)
{
ans = 0;
for( i = 0; i <= n-1; i++)
{p_cofficient[i] = fast_power(p,n-1-i);
//printf("%d\n",p_cofficient[i]);
}
for( j = 0;j <= m-1; j++)
{q_cofficient[j] = fast_power(q,m-1-j);
//printf("%d\n",q_cofficient[j]);
}
for( i=0; i<=m+n-2; i++)
x_self[i] = fast_power(x,m+n-2-i);
for( x_index=0;x_index<=m+n-2;x_index++){
i = 0;
j = x_index - i;
while(j > m-1)
{
j--;
i++;
}
while(j>=0){
ans += p_cofficient[i]*q_cofficient[j]*x_self[x_index];
j--;
i++;
}
}
printf("%d\n",ans);
}
return 0;
}
就是在codeblocks可以正确运行,在VC++6.0上运行的就是乱码,是不是函数错了,但是检测没有错误啊 展开
#include<string.h>
#include<math.h>
const int maxn = 10010;
int fast_power(int a,int b)
{
int res = 1;
int tmp = a;
while(b)
{
if(b&0x1) res *= tmp;
tmp *= tmp;
b >>= 1;
//printf("%d\n",res);
}
//printf("%d\n",res);
return res;
}
int main()
{
int p_cofficient[maxn],q_cofficient[maxn],x_self[maxn];
int p,q,x,n,m,ans = 0,i,j,x_index;
while(scanf("%d%d%d%d%d",&p,&q,&x,&n,&m)!=EOF)
{
ans = 0;
for( i = 0; i <= n-1; i++)
{p_cofficient[i] = fast_power(p,n-1-i);
//printf("%d\n",p_cofficient[i]);
}
for( j = 0;j <= m-1; j++)
{q_cofficient[j] = fast_power(q,m-1-j);
//printf("%d\n",q_cofficient[j]);
}
for( i=0; i<=m+n-2; i++)
x_self[i] = fast_power(x,m+n-2-i);
for( x_index=0;x_index<=m+n-2;x_index++){
i = 0;
j = x_index - i;
while(j > m-1)
{
j--;
i++;
}
while(j>=0){
ans += p_cofficient[i]*q_cofficient[j]*x_self[x_index];
j--;
i++;
}
}
printf("%d\n",ans);
}
return 0;
}
就是在codeblocks可以正确运行,在VC++6.0上运行的就是乱码,是不是函数错了,但是检测没有错误啊 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询