The basics of programming in c++ for beginners

Tasks: A for loop in c ++

Once you begin to tasks,  therefore already know what for loop. Let's look at a few of the tasks, solution in which it is applied, and, thereby, strengthen the knowledge gained. Programming practice– the best way to deal with the material and store information for a long time.

1. Write a program, that will show on the screen the number of the square,  entered by the user. The user has to decide for himself –  exit the program or continue writing. (Tip – You must run an infinite loop, which provide for termination of his, upon the occurrence of certain conditions).

2. In the gym every day comes a certain number of visitors. It should prompt the user to enter such data: how many people visited the gym for the day, enter the age of each visitor and ultimately show the age of the oldest and the youngest of them, as well as to calculate the average age of visitors.

For the job yourself, We offer you to solve a similar task. Arrange the number of visitors entering the gym and the number of hours spent by each of them in the gym. As a result, calculate and display the total amount, which customers have paid for training.

 3. In stock has a certain number of boxes of apples (in this example, 15). When the car arrives for pickup, ask the user to enter, how many boxes loaded into the first car,  the second and so on, until there are no more boxes of apples. Provide case, When the user enters the number of boxes more, than there is in stock.

If you have questions, please contact us in the comments.

161 thoughts on “Tasks: A for loop in c ++

  1. #include
    #include
    using namespace std;

    int main()
    {
    setlocale(LC_ALL, "rus");
    int x = 0;
    int y = 0;
    int min = 1000;
    int max = 0;
    int sum = 0;
    int srd = 0;

    cout <> x;
    int z = x;
    for (x; (x > 0); x--)

    {
    cout <> y;
    sum = sum + y;
    if (min > y)
    min = y;

    if (max < y)
    max = y;
    }
    srd = sum / z;
    cout << "Максимальный возраст - " << max << endl;
    cout << "Минимальный возраст - " << min << endl;
    cout << "Средний возраст - " << srd << endl;
    _getch();
    return 0;
    }

  2. а вот с третий задачей не сложилось

    #include
    #include
    using namespace std;

    int main()
    {
    setlocale(LC_ALL, "rus");
    int y = 0;
    int x = 0;
    cout << x;
    for ( ;;)
    {
    cout << y;
    x = x - y;
    if (x = 0)
    {
    break;
    }
    if (x < 0)
    {
    x = x + y;
    cout << "Введено недопустимо большое значение. Начните ввод для крайней машины заного. \n ";
    continue;
    }

    else
    {
    x = x - y;
    cout << "У вас осталось " << x << " ящиков \n";

    }

    }
    _getch();
    return 0;
    }

    в чем ошибка?

    1. В вашем коде ошибка в этом месте if (x = 0). Т.е., при любом раскладе х не будет отрицательным, а будет постоянно равен 0.

  3. Вот как у меня получилась задача N3:
    ________________________
    #include
    #include
    using namespace std;
    int main ()
    {
    int a,h,b,c,k,p,v,g,n;
    a=0;//ящикoв
    setlocale(LC_ALL, "rus");
    b=0;//машини
    n=0;//ящики
    v=0;//лишились
    k=0;
    g=0;
    h=0;
    cout <<"Введите количество ящиков"<>a;
    cout <<"Введите количество машин"<>b;

    for (c=1;c<=b;c++)
    {
    :check_1
    cout <<"Сколько ящиков поставить в "<<c<<"-ю машину?"<>n;
    g+=n;//
    if (a<g)
    {
    g-=n;
    for (;;)
    {
    cout <<"Недостаточно ящиков"<<endl;
    cout <<"Сколько ящиков поставить в "<<c<<"-ю машину?"<>p;
    g+=p;//
    }
    if (a>g)
    {
    :check_1
    }
    else
    g-=p;
    goto check;
    }
    }
    }
    if (g<a)
    {
    cout <<"Ошибка!Нехватка машин!У вас осталось "<<a-g<<" ящиков"<<endl;
    }
    else
    cout <<"15 ящиков распределено по машинах"<<endl;

    system ("pause");
    return 0;
    }

    1. > Вот как у меня получилась задача N3:

      Видеть такое без разметкиэто всё равно, если бы весь код в одну строчку выписать. Код даже и в такой записи будет компилироваться и выполняться, но это не значит, что его кто-то станет читать.

    2. > Вот как у меня получилась задача N3:

      Вы бы хоть откомпилировали код, через компьютер прогнали, перед тем как его показыватьтам будет просто множество синтаксических errors. Поэтому говорить прополучилось” – не приодится ;-).

  4. for (;;) – А выход из цикла где?
    Или он там был, но портал скушал?

  5. Что бы не писать такого : int minAge = 100;
    Можно такое сделать :
    int minAge = 0
    if (age < minAge || age == 0)

    А то не известно, может продолжительность жизни увеличется в будущем..

    1. > Можно такое сделать :

      Can…
      Но обратите внимание на то, what always при отборе в последовательности (array, список и др.) элемента по какому-то критерию: min, max, … any – есть 2 разных подхода:

      1. взять за начальное значение явно не подходящее для этого значение (then, что в примере и у вас … 100, 0, …);

      2. взять за начальное значение first элемент последовательности, а перебор вести, начиная со следующего, 2-го elements.

      1. .. тогда и условие со второго элемента выставить..

        Ну у кого как мозги повёрнуты. В общем-то в этом и привлекательность сего дела.

  6. У меня как-то по другому 3-е задание получилось

    #include
    using namespace std;

    int main()
    {
    int nNumBoxPerCar, nNumBox=0, i=1, nOstatokBox=15;

    for ( ;nNumBox < 15 ; i )
    {
    cout << "Сколько ящиков загрузить в машину " << i <> nNumBoxPerCar;
    nNumBox = nNumBox + nNumBoxPerCar;
    if (nNumBox >= 15)
    {
    nOstatokBox = (15 – nNumBox) + nNumBoxPerCar;
    break;
    }
    }
    cout << "Ящики закончились. Причем в последнюю машину удалось загрузить: "
    << nOstatokBox << "\n";
    }

  7. Первую задачу по-другому решил.
    using namespace std;
    int main()
    {
    setlocale(LC_ALL, “rus”);
    int number = 0;
    bool Continue = 0;
    for (int i = 0; i < 1; i )
    {
    cout <> number;
    cout << endl;
    cout << "Квадрат числа " << number << " = " << number*number << endl;
    cout <> Continue;
    if (Continue == 1)
    i–;

    }

    system(“pause”);
    return 0;
    }

  8. task №3
    awry, но главное смысл и результат

    #include
    using namespace std;
    int main()
    {
    int i=0,a,b;
    char x;
    cout<<a;
    for(;;)
    {
    i+=1;
    cout<<i<<b;
    if (a>b)
    {
    a-=b;
    cout<<"Na sklade ostatok = "<<a<<endl;
    }
    else if (a<b)
    {
    cout<<"Na sklade otalos = "<<a<<endl;

    cout<<"zagruzat - "<<a<<"jachikov?";

    cout<<x;
    if (x=='y')
    {
    cout<<"zagruzili ostatok - "<<a;
    break;
    }
    else if (x=='n')
    {
    cout<<"izvenite za neudobstvo DOSVIDANIE";
    }
    }
    else if (a==b)
    {
    cout<<"Na sklade ostalos = 0"<<endl;
    break;
    }
    }
    return 0;
    }

Leave a Reply

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