中文输出测试

    xiaoxiao2024-10-29  56

    中文输出测试 Time Limit: 1000 ms Memory Limit: 65536 KiB Submit Statistic Problem Description

    输入一个字符串并将其输出。 Input

    输入一个字符串。 Output

    输入的字符串。 Sample Input

    哈哈哈 Sample Output

    哈哈哈 Hint

    Source

    行走的二叉树

    #include <stdio.h> #include <stdlib.h> int main() { char s[101]; gets(s); printf("%s",s); return 0; }
    最新回复(0)