This commit is contained in:
Oleksandr Vyshniakov 2025-02-22 13:57:04 +01:00
parent 246914848c
commit 0d6a072559

View File

@ -3,7 +3,12 @@
#define maxcoe 100
int read_number (double *num) {
char buffer[50]
char buffer[50];
if (!fgets(buffer, sizeof(buffer), stdin)) { //если fgets не смог считать строку
return 0;
}
if (sscanf)
}
int main() {