Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

为什么可以AC,但却得不出正确的结果

Posted by jyyan123 at 2009-05-20 07:26:50 on Problem 1004
#include<stdio.h>
#include<math.h>
int main()
{
    float dollar[12];
    float sum=0;
    float average;
    int i;
    for(i=0;i<12;i++)
    {
        scanf("%f",&dollar[i]);
    }
    for(i=0;i<12;i++)
    {
        sum=sum+dollar[i];
    }
    average=(float)(sum/12);
    printf("$%.2f",average);
    return 0;
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator