![cpp](https://habrastorage.org/r/w120/webt/5a/80/ee/5a80eee835721314512847.png)
C++
- 5 ответов
- 0 вопросов
1
Вклад в тег
char c;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
fscanf(f, "%d", &pole[i][j]);
fscanf(f, "%c", &c);
printf("%d ",pole[i][j]);
}
printf("\n");
}