#include<stdio.h> void main() { int i,max,n,d;
解决时间 2021-03-05 21:58
- 提问者网友:我没有何以琛的痴心不悔
- 2021-03-05 17:13
#include
void main()
{
int i,max,n,d;
double k;
int a[1000];
max=0;
while(scanf("%d",&n)!=EOF)
{
for(i=0;i {
scanf("%d",a[i]);
if(a[i]>max)
max=a[i];
}
k=max;
while(1)
{
for(i=0;i {
if(k%a[i]==0)
d++;
}
if(d==n)
break;
k++;
}
printf("%lf\n",k);
}
}
出现了error c21:invalid operands for binary operation 该怎么解决?
最佳答案
- 五星知识达人网友:往事埋风中
- 2021-03-05 18:36
我的报错和你的不一样。
我改了几个地方:
float->double
scanf里面的%f->%lf
你的weight后面的都写成了wight
#includeint main(void){ double weight; double value; printf("Are you worth your wight in rhodium?\n"); printf("Let's check it out.\n"); printf("Please enter your wight in pounds: "); scanf("%lf",&weight); value = 770 * weight * 14.5833; printf("Your wight in rhodium is worth $%.2f.\n",value); printf("You are easily worth that! If rhodium prices drop.\n"); printf("Eat more to maintain your value.\n"); return 0;}
全部回答
- 1楼网友:老鼠爱大米
- 2021-03-05 20:37
这是什么题
再看看别人怎么说的。
等下我看看先
我要举报
大家都在看
推荐资讯