题解列表

筛选

Hello, world!-题解(C语言代码)

摘要:这道题我的思路很简单 char数组接收整个字符串 因为空格分隔 很容易转换成int数组 然后输出 ```c #include int main(){ char a=0, b[5000] = ……