Looking for Основи програмування в авіаційній та ракетно-космічній техніці test answers and solutions? Browse our comprehensive collection of verified answers for Основи програмування в авіаційній та ракетно-космічній техніці at vns.lpnu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Що виведе наступний фрагмент програми?
int i = 0;
while (1)
{
printf("%d", i++ );
if (i > 3) break;
else continue;
}
Число з якого діапазону роздрукує наступна програма?
int num;
do {
scanf("%d",&num);
}
while(num<1 || num>10);
printf("%d", num);
#include
int main(){
int a,i,n,s; n=6; s=0;
for(i=0; i
{
scanf("%d",&a);
if(a<=0)
continue;
s+=a;
}
printf("сума = %d
",s);
return 0;
}
Що буде? do { break; } while(1);