#27033: 我的解法


40171212H (Marc Polla)

學校 : 國立臺灣師範大學
編號 : 53139
來源 : [118.167.203.168]
最後登入時間 :
2023-01-28 13:16:33
c186. 蝸牛老師的點名單 -- 板橋高中python教學題 | From: [210.69.173.254] | 發表日期 : 2021-09-08 16:51

#include <stdio.h>

#include <string.h>

 

int main(void){

    int i=0,j=0;

    char c='\0',p;

    char list[30][10000];

    while(c!='\n'){

        c=getchar();

        if(c!=' '){

            list[i][j++]=c;

        }

        if(c==' '){

            if(p!=' '){

                i++;

            }

            j=0;

        }

        p=c;

    }

    int t;

    for(t=0;t<=i;t+=1){

        puts(list[t]);

    }

    return 0;

}

 
ZeroJudge Forum