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
|
#include <iostream>
#include <string>
#include <cstdlib>
#include <algorithm>
using namespace std;
//BEGIN FUNCTION PROTOTYPE
void redactDigits( string & s );
//Start Main
int main ()
{
string s;
redactDigits(s) ;
}
void redactDigits( string & s ){
{
cout<<"Input you information: ";
cin>>s;
replace(s.begin(),s.end(),'4','*');
replace(s.begin(),s.end(),'3','*');
replace(s.begin(),s.end(),'2','*');
replace(s.begin(),s.end(),'1','*');
replace(s.begin(),s.end(),'5','*');
replace(s.begin(),s.end(),'6','*');
replace(s.begin(),s.end(),'7','*');
replace(s.begin(),s.end(),'8','*');
replace(s.begin(),s.end(),'9','*');
replace(s.begin(),s.end(),'0','*');
cout<<s<<endl;
}
}
|