+ 2
Make a program segment to input a int number and covert it into char
Input: 65 output: A (make it with main method)......
8 odpowiedzi
+ 2
here is the code
https://code.sololearn.com/c39S2nM8EGS3/?ref=app
0
make it with main method!!!!
0
Great
0
make it yrrrr!!!!
0
plzzz make it...if u nt then i think u dont know how to make..
0
// i think that this output can be acheived by this program....if yes then put like and if no then put dislike 
public class Program
{
    public static void main(String args[])
{
    char c1,c2;
    c1 = 65;
    c2= c1;
    System.out.println(c2);
    }
}  //thnxx in advance if you put like in my code......



