0
Patters of library class
To generate and print the letters from A to Z along with their unicode . Letters. Unicode A 65 B 66 ...... ........ ...... ........ Z 90
12 Antwoorden
+ 2
Sudhanshu Dwivedi ,
i suppose that you are asking to generate and print characters with their related unicode point.
if you need some help how to code this, please show us your code attempt that you have done so far.
+ 2
Yes, I got it how to do it . thanks
+ 1
remember that chars are actually numbers in a specific value range ...
here is an interesting way to do it in Java:
https://sololearn.com/compiler-playground/cfuRmiFSg7DO/?ref=app
0
That's not the program which I want ...it is good but not useful.thanks
0
Not useful
0
Sudhanshu Dwivedi
Communicating clearly is also a skill you need to learn if you're going to work with other people.
Can you provide a more detailed description of what your code is supposed to do?
or maybe post your code so we can debug it?
It's easier to help if i don't have to guess what you're thinking of.
'not useful' is not a useful reply....😅
0
Fine I will give you detail about the code but after a hour or a day
0
I discovered this app after complete learning of Array and library classes.Some questions of the same which I really cant answer at my own .
0
Sudhanshu Dwivedi
i modified my code to use simpler syntax and limit it to only A to Z. is it something like what you have in mind?
0
I was thinking that we may print letter A and B then give a gap and then Z . As well as their unicodes
0
If it is possible then please help
0
something like this?
https://sololearn.com/compiler-playground/cfuRmiFSg7DO/?ref=app
but if it's just these few lines, you can probably just print a multi line text block without the need for iteration (see the last example println at the bottom part)...