0
Challenge for proffisional
How to make program IN C++ that put letters (from user) bettwen every number (from user) ... for example : input L and 386829273 output 3L8L6L8L2L9L2L7L3 I know that program not useful but i really want to learn NOTE : THE PROGRAM IN C++ đ
10 Answers
+ 3
delcare and initialize an empty string
a for loop that runs the length of the numerical input
+= the number at the for loop index forcing it to be a char if needed into the empty string
+= the letter input into the empty string
if you are woried about the trailing letter in the output, then reduce the condition of the loop counter by 1.
0
Please write the code .... i cant understand đ
0
Nikhil Dhama
Gooooooooood job you are really BRO WELLDONE đđđ
0
Ace
i am really very starter in c++ and i know a little commands just tell me the commands that i need in this program to see if i can do it
0
Here's a less clever, but safer approach.
https://code.sololearn.com/cG0gw7ZwkKN0/?ref=app
0
Ace
i Did it .... i used very simple commands
but why ... when i use a huge number tell me no output
https://code.sololearn.com/cZ2O5C6K0AzW/?ref=app
0
nonzyro
welldone ... but you used alot of unknow command to me đ€
0
Study the STL to get your footing :)