/ Vijos / 讨论 / Vijos /

囧了数据都不知道读了……

昨晚的比赛很囧地只有60……

请教各位,第一题和第三题的数据输入格式我不太清楚……

题目说每一个测试点有多组数据,具体是多少组不知道,这种数据要怎么读?

读完一组数据后怎样得知下面有没有数据?

以前做了几题好像也是这样的,无奈我只好用死循环读取了= =

2 条评论

  • @ 2009-11-08 12:42:52

    c语言也可以用

    while(scanf("%d",&n)!=EOF){...}

  • @ 2009-11-08 12:39:29

    PASCAL CODE:

    while not eof do

     begin

      {code here ...}

     end;

    C CODE:

    while(!feof(stdin)) /*Code here*/}

    C++ CODE:

    while(cin>>x){/*Code here*/}

  • 1