#include <stdio.h> int main() { FILE *scores_file; int error, total; char name[81]; scores_file = fopen("top10.txt", "r"); if (scores_file == NULL) ...
確定! 回上一頁