11 条题解
-
0
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); string str; getline(cin,str); for(int i = 0; i < str.size();i++){ if((str[i] == ' ' && str[i + 1] != ' ') || str[i] != ' '){ cout << str[i]; } } return 0; }
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); string s; while(cin >> s){ cout << s << " "; } return 0; }
-
0
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.nextLine(); sc.close(); String[] st = s.split("\\s+"); // 正则表达式 \\s+ 表示 一个或多个空白字符 for (int i = 0; i < st.length; i++) { if(i == st.length - 1) System.out.print(st[i]); else { System.out.print(st[i]+" "); } } } }
- 1
信息
- ID
- 11
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 4
- 标签
- 递交数
- 1277
- 已通过
- 571
- 上传者