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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to calculate percentage between two numbers in Java

1 Answer

0 votes
public class MyClass {
    public static double GetPercentage(float num1, float num2) {
        return (num1 / num2) * 100.0;
    }
 
    public static void main(String args[]) {
        System.out.format("30 is %.2f%% of 40\n", GetPercentage(30, 40));
 
        System.out.format("40 is %.2f%% of 30\n", GetPercentage(40, 30));
 
        System.out.format("20 is %.2f%% of 35\n", GetPercentage(20, 35));
    }
}




/*
run:
 
30 is 75.00% of 40
40 is 133.33% of 30
20 is 57.14% of 35
 
*/

 



answered Jul 19, 2022 by avibootz

Related questions

1 answer 181 views
1 answer 144 views
1 answer 133 views
1 answer 112 views
1 answer 122 views
1 answer 109 views
1 answer 113 views
...