C语言写这题不能用scanf 摘要:解题思路:注意事项:测试的数据中有空格,使用scanf不能识别空格。要使用gets或者别的支持空格的。参考代码:```c#include<stdio.h>#include&…… 题解列表 2025年08月02日 1 点赞 0 评论 55 浏览 评分:10.0
编写题解 3000: 交换值 摘要:解题思路:注意事项:参考代码:a=input().split(' ')b=a[1]c=a[0]print(b,c)…… 题解列表 2025年08月09日 1 点赞 0 评论 26 浏览 评分:10.0