摘要:
//UVa227 - Puzzle#includevoid swap(char *a, char *b){ char t = *a; *a = *b; *b = t;}int main(){ //freopen("date.in","r",stdin); //freo... 阅读全文
摘要:
//UVa340 Master-Mind Hints#include#define max 105 int main(){ //freopen("date.in","r",stdin); int n, a[max], b[max]; int kase = 0; whi... 阅读全文