北大POJ 1005 一直编译错误!
代码如下:(在本机VS2010运行正常,交上去就编译错误:Memory:N/ATime:N/ALanguage:C++Result:CompileError)#inclu...
代码如下:(在本机VS2010运行正常,交上去就编译错误:
Memory: N/A Time: N/A
Language: C++ Result: Compile Error
)
#include <iostream>
using namespace std;
int main()
{
double PI=3.14159265;
int n;
cin>>n;
for(int i=1;i<=n;++i)
{
double a, b;
cin>>a>>b;
double total=PI*(a*a+b*b)/2;
int year=0;
while(total > 0)
{
total-=50;
++year;
}
cout<<"Property "<<n<<": This property will begin eroding in year "<<year<<"."<<endl;
}
cout<<"END OF OUTPUT."<<endl;
}
虽说少些return 0;但应该没有关系的。 展开
Memory: N/A Time: N/A
Language: C++ Result: Compile Error
)
#include <iostream>
using namespace std;
int main()
{
double PI=3.14159265;
int n;
cin>>n;
for(int i=1;i<=n;++i)
{
double a, b;
cin>>a>>b;
double total=PI*(a*a+b*b)/2;
int year=0;
while(total > 0)
{
total-=50;
++year;
}
cout<<"Property "<<n<<": This property will begin eroding in year "<<year<<"."<<endl;
}
cout<<"END OF OUTPUT."<<endl;
}
虽说少些return 0;但应该没有关系的。 展开
3个回答
展开全部
你的代码中间有一些空格不被系统识别
我已经帮你转换好了
你复制我的代码就可以了
里面有个小错误,见注释
已经AC。
#include <iostream>
using namespace std;
int main()
{
double PI=3.14159265;
int n;
cin>>n;
for(int i=1;i<=n;++i)
{
double a, b;
cin>>a>>b;
double total=PI*(a*a+b*b)/2;
int year=0;
while(total > 0)
{
total-=50;
++year;
}
cout<<"Property "<<i<<": This property will begin eroding in year "<<year<<"."<<endl; // Property后面是i
}
cout<<"END OF OUTPUT."<<endl;
}
我已经帮你转换好了
你复制我的代码就可以了
里面有个小错误,见注释
已经AC。
#include <iostream>
using namespace std;
int main()
{
double PI=3.14159265;
int n;
cin>>n;
for(int i=1;i<=n;++i)
{
double a, b;
cin>>a>>b;
double total=PI*(a*a+b*b)/2;
int year=0;
while(total > 0)
{
total-=50;
++year;
}
cout<<"Property "<<i<<": This property will begin eroding in year "<<year<<"."<<endl; // Property后面是i
}
cout<<"END OF OUTPUT."<<endl;
}
展开全部
你的程序即使没有格式或者编译错误,算法思想也是有问题的。本来是一道简单题,你想太多了。看看我的代码你就明白了#include<iostream>
#define pi 3.1415926
using namespace std;
int main()
{
int i,j=1,n;
double x,y;
cin>>n;
while(n--)
{
cin>>x>>y;
for(i=1;x*x+y*y>=i*100/pi;i++);
cout<<"Property "<<j<<": This property will begin eroding in year "<<i<<"."<<endl;
j++;
if(!n) cout<<"END OF OUTPUT."<<endl;
}
return 0;
}
#define pi 3.1415926
using namespace std;
int main()
{
int i,j=1,n;
double x,y;
cin>>n;
while(n--)
{
cin>>x>>y;
for(i=1;x*x+y*y>=i*100/pi;i++);
cout<<"Property "<<j<<": This property will begin eroding in year "<<i<<"."<<endl;
j++;
if(!n) cout<<"END OF OUTPUT."<<endl;
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询