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

Re:可是改成C代码就AC了,算法应该没有问题啊

Posted by clark at 2004-12-19 23:15:26 on Problem 1006
In Reply To:把scanner改为原来的输入方法试试看,如果还不行,那就是算法问题了,而不是java的问题 Posted by:hawk at 2004-12-19 22:56:19
#include <stdio.h>
int main(void){
   int p, e, i, d;
   int c=1;
   int triple = 0;
   scanf("%d%d%d%d", &p, &e, &i, &d);
   while(p!=-1){
      triple = (p*5544+e*14421+i*1288)%21252;
      triple-=d;
      if(triple <= 0)
				triple+=21252;
      printf("Case %d: the next triple peak occurs in %d days.\n", c++, triple);
      scanf("%d%d%d%d", &p, &e, &i, &d);
   }
}

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