Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
stream1
//g++ 7.4.0 //this code is created by Rezaul Hoque on October 05,2021;contact: jewelmrh@yahoo.com //note: codes shared by Rezaul Hoque on rextester are not for sale; they are created and shared to facilitate the algorithm learning process; many like Hoque use this platform to practice programming ;Rezaul hopes his contribution helps others to fine tune their learning; #include <fstream> #include <iostream> #include <iomanip> #include <string> int main() { std::cout<<"#"; std::cout.width(25); std::cout.fill('#'); std::cout<<"\n"; std::cout.put('O').put('c').put('t').put(' ').put('5').put(',').put('2').put('0').put('2').put('1').put('\n'); const double hr=23; std::cout.setf(std::ios::showpoint); std::cout<<"\nTime: "<<hr<<" hours\n"; char txt; while(std::cin.get(txt)){ if(txt=='a'||txt=='e'||txt=='i'||txt=='o'||txt=='u') std::cin.putback('*'); else std::cout<<txt; } std::cout<<"\n"; std::cout<<"#"; std::cout.width(25); std::cout.fill('#'); std::cout<<"\n"; return 0; }
run
|
edit
|
history
|
help
0
K edit distance
Quiz 12/13
test if nullptr
Perfect Square Solution
cpp base
CharSearch
StackBubLink
Substring search
CPP - Arrays - Ex.3
Mr