“делать, пока c” Ответ

делать ... пока петля С

// Program to add numbers until the user enters zero

#include <stdio.h>
int main() {
  double number, sum = 0;

  // the body of the loop is executed at least once
  do {
    printf("Enter a number: ");
    scanf("%lf", &number);
    sum += number;
  }
  while(number != 0.0);

  printf("Sum = %.2lf",sum);

  return 0;
}
SAMER SAEID

В то время как петля c

// Print numbers from 1 to 5

#include <stdio.h>
int main() {
  int i = 1;
    
  while (i <= 5) {
    printf("%d\n", i);
    ++i;
  }

  return 0;
}
SAMER SAEID

C, пока петля

while (testExpression) {
  // the body of the loop 
}
SAMER SAEID

C делаю ... пока цикл

do {
  // the body of the loop
}
while (testExpression);
SAMER SAEID

Ответы похожие на “делать, пока c”

Вопросы похожие на “делать, пока c”

Больше похожих ответов на “делать, пока c” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования