-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path输出字符串中的数字.cpp
35 lines (34 loc) · 1.05 KB
/
输出字符串中的数字.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Name: 北京理工大学复试上机历年题目
Date: 2019-02-26
Author: Sologala
GitHub: https://github.com/Sologala
Question:
输入字符串,输出字符串中包含的数字,比如 2.3ABC0-2.3 输出 2.3 0 -2.3。
注意一些特殊的情况如+004.500值为+4.5。
输入 dsfa3.14-2.5+60dsaf4dsaf5923.122139fdsa000001
输出 3.14 -2.5 60 4 5923.122139 1
思路 + 字母以及其他符号 都可以省略,除了. 为了防止 出现表达式这种我们在每个‘-’ \
前面都加上一个空格。这样就能保证 每次读取的数字都是正确的。
*/
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main(){
string getstr;
cin>>getstr;
for(int i=0;i<getstr.length();++i){
if(getstr[i]=='-') getstr.insert(i++," ");
else if((getstr[i]<'0'||getstr[i]>'9')&&getstr[i]!='.'){
getstr[i]=' ';
}
}
stringstream IS(getstr);
cout.precision(10);
double num;
while(IS>>num){
cout<<num<<" ";
}
return 0;
}