#include <stdio.h> enum [[nodiscard]] ErrorCode { OK, IO_ERROR, }; ErrorCode read_int(int &value) { return scanf("%d", &value) == 1 ?
確定! 回上一頁