Skip to content

Instantly share code, notes, and snippets.

@cyberlex404
Last active September 24, 2018 22:44
Show Gist options
  • Save cyberlex404/46e8969a679080adc1407fdefe08916f to your computer and use it in GitHub Desktop.
Save cyberlex404/46e8969a679080adc1407fdefe08916f to your computer and use it in GitHub Desktop.
void main() {
int num, count = 0;
float summ = 0;
do
{
printf("Eshce\n");
scanf_s("%d", &num);
summ += num;
count++;
} while (num != 9999);
float svalue = summ / count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment