Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,111 questions

40,781 answers

573 users

How to cast long to int in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        long l = 93732;
        
        int n = (int)l;
        
        System.out.println(n);
    }
}




/*
run:

93732

*/

 





answered Sep 16, 2020 by avibootz

Related questions

1 answer 55 views
55 views asked Jan 2, 2022 by avibootz
1 answer 92 views
92 views asked Sep 16, 2020 by avibootz
1 answer 60 views
60 views asked May 28, 2019 by avibootz
1 answer 95 views
95 views asked May 27, 2019 by avibootz
4 answers 173 views
173 views asked Dec 3, 2016 by avibootz
...