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. float stavka = 1.05;
    int term = 0;
    float dohod = 0;
    float dohodVmes = 0;
    int vklad = 0;
    cout << "введите сумму вклада" <> vklad;
    cout << "введите срок депозита" <> srok;
    dohodVmes = (stavka*vklad-vklad) / 12;
    dohod = (vklad*srok*stavka)/12;
    cout << "ваша прибыль в месяц = " << dohodVmes << endl;
    cout << "сума к выплате в конце срока= " << dohod << endl;

    Hello…извините конечно, я вот так сразу и с замечаниями )))
    Мой вариант считает более корректно. Вся суть в том, что у вас не правильно считается месячная прибыль. Вы привязались к количеству дней, а оно в разных месяцах разное! Поэтому расчет и в итоге будет не совсем правильный. Да и банки считают помесячно. Ваш вариант будет считать правильно если разбить ежемесячный доход на 12 месяцев и учесть кол-во дней в каждом.
    If 1000 долларов под 5% положить на год, то прибыль будет 50 у.е )) ..как ни крути ))

  2. Мой вариант программы. Оцените.
    #include
    using namespace std;
    int main(void)
    {
    setlocale(LC_ALL, "Russian");
    double deposit; //ваш депозит
    double rate; //ваш процент
    int month; //количество месяцев
    int Num; //количество дней в месяце
    cout << deposit;
    cout << month;
    cout << Num;
    cout <<rate;
    double S = (deposit*(rate/100)) / month;
    cout << "Ваш месячный процент=" << S;
    cout << "\n";
    cout << "Ваш процент за год=" << S*month<<endl;
    }

  3. Не дочитал условия и сделал по своей формуле….но все работает отлично!!

    #include
    #include
    using namespace std;
    int main()
    {
    setlocale(LC_ALL, "rus");
    float deposit = 0;
    float stavka = 0;
    float kol_mes = 0;
    float preb = 0;
    cout << deposit;
    cout << stavka;
    cout << kol_mes;
    preb = kol_mes * (deposit / 100) * (stavka / 12);
    cout << "Ваша прибыль составит " << preb << endl;
    _getch();
    return 0;
    }

  4. 1. Could be so :
    #include
    #include

    using namespace std;

    int main() {
    setlocale(LC_ALL , “Russian”);
    short int a, b, c, d, e;
    a=b=c=d=0;
    cout << "Введите 4 значительное число \t:" <> e ;
    d = e%10;
    c = e/10%10;
    b =e/10/10%10;
    a = e/10/10/10%10;
    cout << "Ваши цифры в обратном порядке – " << d << c << b << a << endl;
    return 0;
    }

    1. > 1. Could be so :

      Could be so…
      Только тогда ужепо мотивам вашего решениялучше сделать вот так:

      #include
      using namespace std;

      int main() {
      unsigned long long e;
      while( true ) {
      cout <> e;
      cout << "Введенные цифры в обратном порядке : ";
      for( ; e != 0; e /= 10 )
      cout << e % 10;
      cout << endl;
      }
      return 0;
      }

      И число здесь не 4-х значное, а любой разрядности, и код короче.

  5. By the way, в этой задаче (№1) шt is possible … и хорошо быобманутьпользователя. Обмануть тем, что cin первоначально вводит символьные данные и только затем преобразовывает их в требуемый тип. Можно просто не делать вообще никаких преобразований:

    #include
    using namespace std;

    int main() {
    string e;
    while( true ) {
    cout << "Введите любое положительное целое : ";
    getline( cin, e );
    cout << "Введенные цифры в обратном порядке : ";
    for( string::const_reverse_iterator i = e.rbegin(); i != e.rend(); i++ )
    cout << *i;
    cout << endl;
    }
    }

    1. 2-й обман здесь состоит в том, что мне удалось обмануть этот придурастый движок сайта, который сжирает:

      cin >> e;

      Если оно следует за cout

  6. #include

    using std::cout;
    using std::cin;
    using std::endl;
    int main()
    {
    setlocale(0, "Russian");

    float Deposit = 0;
    int month = 0;
    float procent = 5;
    float result = 0;

    cout << "Введите сумму депозита:" <> Deposit;
    cout << "Введите кол-во месяцев:" <> month;
    result = Deposit * (procent / 100) / 365 * 31;
    cout << "Сумма по окончанию срока депозита:" << result + Deposit << endl;

    return 0;
    }

    Вот мой код, works, но я поленился вводить переменные для кол-ва дней

  7. Объясните по следующему моменту:
    Если расчет ставки делать такamountMonth = deposit * (5 / 100) / 365 * 31;
    то значения равны 0.
    Если присвоить значение переменной 5, и вставить в скобки, everything works…
    float procent = 5;
    amountMonth = deposit * (procent / 100) / 365 * 31;
    Почему первый вариант не просчитывает корректно?

  8. #include
    using std::cout;
    using std::cin;

    int main()
    {
    float sumDeposit = 0, hranenie = 0, otvet = 0, procentStav = 0;
    int dneyvMes9ce = 0, dneyvGody = 0;
    cout<<dneyvGody;
    cout<<dneyvMes9ce;
    cout<<sumDeposit;
    cout<<hranenie;
    cout<<procentStav;
    //formula rac4eta procentov v mesac:
    otvet = sumDeposit * (procentStav / 100) / 365 * 30;
    cout<<"============================================\n";
    cout<<"Procent v mes9c po formule: "<<sumDeposit<<" * "<<procentStav<<"% / "<<dneyvGody<<" * "<<dneyvMes9ce<<" = "<<otvet<<"$";
    cout<<"\nProcent za vec' srok: "<<otvet*hranenie+sumDeposit<<"$";

    return 0;
    }

Leave a Reply

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