検索結果 1 件
- 9年前
- フォーラム: C言語何でも質問掲示板
- トピック: ラックナンバーサーチで実行時間のベストテンを表示するには
- 返信数: 0
- 閲覧数: 1962
ラックナンバーサーチで実行時間のベストテンを表示するには
/* ラックナンバーサーチ・トレーニング(最近の10回の日時の表示)*/ #include <stdio.h> #include <time.h> #include <float.h> #include <ctype.h> #include <stdlib.h> #include <sys/types.h> #include <unistd.h> #include "getputch.h" #define MAX_STAGE 3 #define swap(type, x, y) do { type t = x; x = y; y = t; } while (0) #define MAX_NU...