fork download
  1. #include <vector>
  2. #include <list>
  3. #include <map>
  4. #include <set>
  5. #include <deque>
  6. #include <queue>
  7. #include <stack>
  8. #include <bitset>
  9. #include <algorithm>
  10. #include <functional>
  11. #include <numeric>
  12. #include <utility>
  13. #include <sstream>
  14. #include <iostream>
  15. #include <iomanip>
  16. #include <cstdio>
  17. #include <cmath>
  18. #include <cstdlib>
  19. #include <cctype>
  20. #include <string>
  21. #include <cstring>
  22. #include <ctime>
  23. #include <string.h>
  24.  
  25. #define INF 1000000
  26. #define IS_ODD( num ) ((num) & 1)
  27. #define IS_EVEN( num ) (!IS_ODD( (num) ))
  28.  
  29. using namespace std;
  30.  
  31. int main()
  32. {
  33. int i, j, k, p, q, m, n, t, x, y, z;
  34.  
  35. stringstream ss;
  36. string str;
  37.  
  38. str = "999:97 42:22 44:102300";
  39.  
  40. ss << str;
  41.  
  42. char ch;
  43. int temp, temp1;
  44.  
  45. while (1) {
  46. if (ss.fail()) {
  47. break;
  48. }
  49. ss >> temp >> ch >> temp1;
  50. cout << temp << ":" << temp1 << endl;
  51. }
  52.  
  53. return 0;
  54. }
  55.  
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
999:97
42:22
44:102300
44:102300