Computer Science, asked by devilfiring, 5 days ago

write a program to find the first letter of your name by using charAt()
write it in java​

Answers

Answered by AymanPatwekar
0

Answer:

??????????????????????

Answered by singhjaivir749
2

Answer:

Here's an example of declaring a java

public class GetFirstLetter { public static void main (String[] args) { String name = "GRAHAM HENDERSON"; char letter = name.charAt(0); System. ...

The first letter of GRAHAM HENDERSON's name is G.

Similar questions