#include<stdio.h> int main(void) { char array[50]; int i=0; do{ scanf("%c",&array[i]); }while(array[i]!='#' && ++i); array[i]='\0'; ...
確定! 回上一頁