Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
405 views
in Technique[技术] by (71.8m points)

Am learning basic java and i got wrong output

In the code below I am trying to convert char to int. Then I want to print the value of b, but I am getting 155 as output.

public class Maths {

    static int age = 39, age2 = 49;

    public static void main(String Args[]) {
        int a = 's';
        int b = a;
        System.out.println(a);
        System.out.println(b);
    }
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Change your code to this for printing your character 's' and 115 both:

public class cn{


    static int age=39 , age2=49 ;

     public static void main (String Args[])

            {
            int a='s'; // Storing ASCII of 's' i.e. 115
            int b=a; // Coping 115 in b


            System.out.printf("%c
",a); // to print s using char literal
            System.out.println(b); // this print 115

        }
    }

In your code you are initializing int with a char that is storing ASCII of 's'(115) and then you copied that in b so the value in b is 115.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...