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. Первое задание делается легко с помощью цикла:

    #include
    using namespace std;
    int main ()
    {
    setlocale(LC_ALL, "Russian");
    cout << a;
    for (int i = 0; i < 4; i++)
    {
    cout << a % 10;
    a /= 10;
    }
    cout << endl;
    system("pause");
    return 0;
    }

    1. #include

      using namespace std;
      int main ()
      {
      int a;
      setlocale(LC_ALL, “Russian”);
      cin>> a;
      for (int i = 0; i < 4; i )
      {
      cout << a % 10;
      a /= 10;
      }
      cout << endl;
      system("pause");
      return 0;
      }

  2. Немного переделал код задачки №1нам ведь не просто надо по одной, на оборот вывести на экран цифры числа, а перевернуть число чтобы можно было им дальше пользоватьсяесли конечно правильно понял.

  3. My solution to the challenge


    #include
    #include
    #define line cout << "---------------------------------------" << endl
    #define taskcls system("cls");

    using namespace std;

    int main()
    {
    setlocale(0, "russian");

    /* 1 задача */
    cout << "1 задача" << endl;
    int enteredNumber;
    cout << enteredNumber; // вводим число
    if(enteredNumber >= 10000) // проверка числа на четырехзначность
    {
    cout << "Введенное значение не является четырехзначным!\n";
    cout << enteredNumber;
    }
    int temp1, temp2, temp3, temp4;
    temp1 = enteredNumber % 10;
    temp2 = enteredNumber / 10 % 10;
    temp3 = enteredNumber / 100 % 10;
    temp4 = enteredNumber / 1000 % 10;

    cout << "Число в обратно порядке: " << temp1 << temp2 << temp3 << temp4;
    cout << endl;
    system("pause");
    taskcls;

    /* 2 задача */
    cout << "2 задача" << endl;
    double deposit, profit;
    int months;
    cout << deposit;
    taskcls;
    cout << months;
    taskcls;
    profit = deposit * (5.0 / 100.0) / 365.0 * 30.0;
    cout << "Прибыль в месяц, при депозите в " << deposit << " USD составит: " << profit << " USD\n";
    profit *= months; // проценты
    line;
    cout << "Проценты: " << profit << endl;
    line;
    cout << "Общая прибыль: " << deposit + profit;

    _getch();
    return 0;
    }

  4. #include
    using namespace std;

    int main()
    { setlocale(0, "");
    double sum_depozita = 0;
    double month = 0;
    const double prozent_stavk = 7;
    const double day_in_gody = 365;
    double day_in_month;
    cout << sum_depozita;
    cout << month;
    cout << day_in_month;
    double deneg_in_month = sum_depozita * (prozent_stavk / 100) / day_in_gody * day_in_month;
    cout <<"Денег в месяц: " << deneg_in_month << endl;
    double deneg_vsego = deneg_in_month * month;
    cout <<"Всего за все месяцы денег: " << deneg_vsego << endl;
    return 0;
    }

  5. Блин, первый коммент можете удалить.
    Я не знаю почему или так и должно быть но ваш код считает что если сумма вложения 100$, а процент в год 100% и срок 12 получется прибыль 98$.
    Я вот сделал, посмотрите у меня получется все верно!

  6. #include
    using namespace std;
    int main()
    {
    int sum, a, b, c, e;

    cout <> sum ;

    a = sum / 1000;
    b = (sum – a * 1000 )/ 100;
    c = (sum – a * 1000 – b * 100 ) / 10;
    e = (sum – a * 1000 – b * 100 – c * 10 ) / 1;

    cout << e << c << b << a << endl;
    return 0;
    }

  7. К сожалению, I do not know, как добавлять код в специальную форму, как делаете вы, так что про скопирую. Делаю только первые шаги в программировании, выбрал с++ как сложный, фундаментальный, а главное интересный язык. Hope, что огонек интереса не потухнет на сложностях, и я научусь делать что-то действительно полезное.
    P.S У меня, кстати по данным 1000 usd через 12 месяцев получается ровно 1050. Ставка то, годовая, и количество дней в году тут роли не играет совсем, at least, в условии такого не сказано. С удовольствием выслушаю любые замечания и предложения по листингу.

    #include
    using namespace std;

    int main()
    {
    setlocale(LC_ALL, “rus”);
    float sumOfDeposite;
    int termOfSave;
    cout << "Введите сумму, которую вы хотите положить на депозит, usd" <> sumOfDeposite;
    cout << "Введите срок депозита (months)" <> termOfSave;

    float profitPerMonth, allProfit, maxSum, depRate = 0.05;

    profitPerMonth = sumOfDeposite * depRate;
    profitPerMonth /= 12;
    cout << "Ваша прибыль: " << profitPerMonth << " usd в месяц " << endl;
    allProfit = profitPerMonth * termOfSave;
    cout << "Прибыль за весь срок действия депозита: " << allProfit << " usd " << endl;
    maxSum = sumOfDeposite + allProfit;
    cout << "Общая сумма через " << termOfSave << " months(a): " << maxSum << " usd " << endl;

    system ("pause");
    return 0;
    }

  8. вроде так легче :D
    #include
    using namespace std;

    int main(){

    long long int number = 0;

    cout <> number; // вводим цифру

    do{
    cout << number % 10 << " ";
    number = number / 10;
    } while (number % 10 != 0);

    system("pause");

    return 0;
    }

Leave a Reply

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