0
How can I number integer change to string?
9 Respuestas
+ 1
Can we do the same in c++ also?
+ 1
if you use js you can use parseint()
0
what language ?
0
In python
0
use
str(your_int_here)
0
If I input 1
Output one,
If Input 9
Output nine
This type my answer
0
make a list from 0 to 9. fill each index with its string representation. and to access the string you can do this
your_list[your_int]
0
Thank you very much 😉😊
0
just try it, you'll know