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,869 questions

51,792 answers

573 users

How to calculate percentage to increase or decrease to compare two numbers in C++

2 Answers

0 votes
#include <iostream>

double GetPercentageToIncreaseOrDecrease(float num1, float num2) {
    return (num2 - num1) / num1 * 100;
}
 
int main(void) {
    std::cout << "The percentage to increase from 30 to 40 is: " << GetPercentageToIncreaseOrDecrease(30, 40) << "% \n";
     
    std::cout << "The percentage to increase from 20 to 35 is: " << GetPercentageToIncreaseOrDecrease(20, 35) << "% \n";
 
    return 0;
}
 
 

 
 
/*
run:
 
The percentage to increase from 30 to 40 is: 33.3333% 
The percentage to increase from 20 to 35 is: 75% 
 
*/

 



answered May 21, 2022 by avibootz
0 votes
#include <iostream>
 
double GetPercentageToIncreaseOrDecrease(float num1, float num2) {
    return (num2 - num1) / num1 * 100;
}
  
int main(void) {
    std::cout << "The percentage to decrease from 40 to 30 is: " << GetPercentageToIncreaseOrDecrease(40, 30) << "% \n";
      
    std::cout << "The percentage to decrease from 35 to 20 is: " << GetPercentageToIncreaseOrDecrease(35, 20) << "% \n";
  
    return 0;
}
  
 
 
  
  
/*
run:
  
The percentage to decrease from 40 to 30 is: -25% 
The percentage to decrease from 35 to 20 is: -42.8571% 
  
*/

 



answered May 21, 2022 by avibootz
edited May 23, 2022 by avibootz
...