1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 110 浏览 评分:0.0
这个题目比较简单 没啥难的啊 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[81]; int i; while(get…… 题解列表 2018年10月10日 0 点赞 0 评论 347 浏览 评分:0.0
去掉空格-题解(C++代码)(简单) 摘要: char str[1000]; while(!cin.getline(str,1000).eof()) { for(int i=0; i…… 题解列表 2020年02月14日 0 点赞 0 评论 341 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:while True: try: s = input() print(s.replace(' ', '…… 题解列表 2024年04月19日 0 点赞 0 评论 164 浏览 评分:0.0