#include <stdio.h> int main() { enum Action { STOP = 2, RIGHT = 1, LEFT = 3, UP, DOWN }; printf("STOP:%d\n", STOP); printf("RIGHT:%d\n", ...
確定! 回上一頁