diff --git a/README.md b/README.md index 785e42a..76afc57 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,16 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - [![twitter-alt][twitter-img]](https://twitter.com/adeonir) [![github-alt][github-img]](https://github.com/adeonir) +### Adhish Anand +- Student, Chitkara University +- Self-taught Developer, Aspiring Entreprenuer +- I am currently work on: + - Android Development + - Python + - Machine Learning +- [![github-alt][github-img]](https://github.com/adhishanand9) + + ### Aditya Choudhary - Software Engineer in India - [![twitter-alt][twitter-img]](https://twitter.com/webmasteradi) diff --git a/code/adhishanand9.cpp b/code/adhishanand9.cpp new file mode 100644 index 0000000..20ea2ea --- /dev/null +++ b/code/adhishanand9.cpp @@ -0,0 +1,31 @@ +#include +#include +#include +#include +using namespace std; +class GoodString +{ + int t; +public: + GoodString(int x) + { + t=x; + } + + void newstring(string str) + { + for(int i=0;i>n; + GoodString ob(n); + string str; + getchar(); + getline(cin,str); + ob.newstring(str); + return 0; +}