Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <sstream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- stringstream ss;
- int suma,miejsce,liczba;
- string konwert="";
- string tekst="W roku panskim 1345, wladca Henryk 12, na rzecz swoich 143209 poddanych uchwalil dekret o 20 procentowej znizce podatkow";
- for(int i=0;i<tekst.length();i++){
- if(tekst.at(i)>47 &&tekst.at(i)<58){
- miejsce=i;
- konwert.append(1,tekst.at(i));
- }
- if(tekst.at(i)>64 && i>miejsce && konwert!=""){
- cout<<"konwert:"<<konwert<<"|"<<endl;
- ss<<konwert;
- if(ss>>liczba){
- suma+=liczba;
- }else{ss.clear();ss.str("");}
- konwert="";
- }
- }
- cout<<"Suma liczb wynosi: "<<suma<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement