August 2022 1 11 Report
Что будет выведено на экран в результате работы программы

#include
#include
#include
main()
{
int i,sum=0;
for (i=2;i<=20;i++)
{
if ((i>=3)&&(i<=8)) sum = sum +i%2;
if (i*i > 20) break;
}
printf("%d",sum);
getch();
}

/Пояснение: команда break - принудительно завершает цикл.
C++
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.