0
I want to print the letters beside each other..help me please ...
Guys, this code gets Capital letters and prints the letters above each other in stars.. Like : input : JOEY output: J O E Y But I want them to be printed beside each other like when you enter : JOEY TRIBBIANI The output will be : JOEY TRIBBIANI you can run the code to know what I mean.. https://code.sololearn.com/c2hrbmdOzf0k/?ref=app
4 Answers
+ 1
The user inputs string, but you store it into char. That's the main problem since char can only hold 1 character. Store the input into string. Iterate the string and it will work.
And just telling, you can improve your code a lot.
+ 2
It is most probably better to leave the letters underneath each other since on phones it will display better. As CarrieForle said, there are so many other things that you can do better.
Take alook at this code and see what you can learn.
https://code.sololearn.com/cozgL69YFEWm/?ref=app
Edit : I'm not saying this is the ultimate, just that there are some fundamentals that you could apply.
0
Thank you so much..
I saw your code and it was so shorter and better...
And I can use stars instead of the sharps and delete the points and replace it with spaces...
0
M.Gavili
Just take note, its not my code.
Check the name.