#36176: C 解答


Tom951121 (Tom)

學校 : 國立中正大學
編號 : 80710
來源 : [140.123.147.230]
最後登入時間 :
2023-10-20 20:26:55

#include <stdio.h>

int main() {
    char a[1024], b[1024];
    scanf("%s %s",a,b);
    printf("%s and %s sitting in the tree",a,b);
    return 0;
}