#include <stdio.h>
int main(void) {
enum FaceValue { two=2, three, four, five, six, seven,
eight, nine, ten, jack, queen, king, ace};
enum FaceValue today = three;
printf("%d/n",today);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266718.html