The basics of programming in c++ for beginners

Tasks: arithmetic operations in C ++

If you have already read the articleArithmetic operations in C ++ you can begin to practice.

1. Common task:  Given the four-digit number (for example 5678), display the numbers in reverse order of which is the number of member. That is, we should see on the screen 8765. Tip: to take from among the individual numbers, should be applied to the modulo 10.

2. The site of almost any commercial bank, you can find the so-called Deposit calculator, which allows people to, not wishing to go into the formula for calculating interest rates, to know how much they will receive. To do this, they just fill in certain fields, press the button and see the result. This is a simple program, which has already been able to write each one of you. So, a task: The user enters the amount of the deposit and the number of months of keeping money in the bank. It is necessary to calculate and show the screen profit from the deposit in a month,  for the entire term of the deposit, and the total amount payable at the end of the period.  Currency let it be – U.S. dollar. Interest rate – 5% APR.  The formula for calculating percent per month–                      SumDeposit * (interest rate / 100)  / daysperyear * dayspermonths.

Perhaps you have any questions about the solution of tasks – ask them in the comments!

151 thoughts on “Tasks: arithmetic operations in C ++

  1. 1.
    #include
    using namespace std;

    int main()
    {
    setlocale(LC_ALL, “rus”);

    int a;
    cin>>a;
    cout << a % 10 << a / 10 % 10 << a / 100 % 10 << a / 1000;

    return 0;
    }

    1. 2.
      #include
      using namespace std;

      int main() {
      setlocale(LC_ALL, “ru”);

      int a, b;
      cout <>a;
      cout <>b;
      float perMonth = a * 0.05 / 365 * 30;
      float atAll = perMonth * b;
      float sum = a + atAll;

      cout << "Прибыль с депозита в месяц: " << perMonth << "$\n";
      cout << "Прибыль с депозита за общий срок: " << atAll << "$\n";
      cout << "Общая сумма на вывод в конце срока: " << sum << "$\n";
      }

Leave a Reply to white Cancel reply

Your email address will not be published. Required fields are marked *