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

我的想法,错了吗?

Posted by shenfangyi at 2006-10-20 19:38:21 on Problem 2940
#include<stdio.h>
#include<stdlib.h>
main()
{
    int n;
    scanf("%d",&n);
    while(n)
    {
        int total=0,rest=0;
        while(n--)
        {
            int x;
            scanf("%d",&x);
            x+=rest;
            total+=abs(x);
            rest=x;
        }
        printf("%d\n",total);
        scanf("%d",&n);
    }
}

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