北大ACM试题1005
我用C语言写的代码如下:请问为甚么总是presentationerror?谢了。。。#include<stdio.h>#include<math.h>#defineSIZ...
我用C语言写的代码如下:请问为甚么总是presentation error?谢了。。。
#include <stdio.h>
#include <math.h>
#define SIZE 1000
struct coordinate
{
double x;
double y;
}point[SIZE];
int main()
{
int i;
int n;
struct coordinate point[SIZE];
double s ;
int year;
double p = 3.1415926;
scanf("%d", &n);
for ( i = 0; i <= n - 1; i++ )
{
scanf("%lf %lf", &point[i].x, &point[i].y);
}
for ( i = 0; i <= n - 1; i++ )
{
s = p * ( point[i].x * point[i].x + point[i].y * point[i].y );
year = s / 100;
printf("Property %d:This property will begin eroding in year %d.\n", i + 1, year + 1 );
}
printf("END OF OUTPUT.");
return 0;
} 展开
#include <stdio.h>
#include <math.h>
#define SIZE 1000
struct coordinate
{
double x;
double y;
}point[SIZE];
int main()
{
int i;
int n;
struct coordinate point[SIZE];
double s ;
int year;
double p = 3.1415926;
scanf("%d", &n);
for ( i = 0; i <= n - 1; i++ )
{
scanf("%lf %lf", &point[i].x, &point[i].y);
}
for ( i = 0; i <= n - 1; i++ )
{
s = p * ( point[i].x * point[i].x + point[i].y * point[i].y );
year = s / 100;
printf("Property %d:This property will begin eroding in year %d.\n", i + 1, year + 1 );
}
printf("END OF OUTPUT.");
return 0;
} 展开
展开全部
input int data:
1
input 2 float data:
0.2 0.3
Property 1:This property will begin eroding in year 1.
1
input 2 float data:
0.2 0.3
Property 1:This property will begin eroding in year 1.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-01-29
展开全部
presentation error
说明算法正确,计算结果也对,但是输出格式不符合要求,请写出题目地址。
说明算法正确,计算结果也对,但是输出格式不符合要求,请写出题目地址。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询