A. 水题:签到 #include<bits/stdc++.h> using namespace std; int main(){ int a[32]={1, 1, 1, 2, 1, 2, 1, 5, 2, 2, 1, 5, 1, 2, 1, 14, 1, 5, 1, 5, 2, 2, 1, 15, 2, 2, 5, 4, 1, 4, 1, 51}; int n; cin>>n; cout<<a[n-1]<<endl; return 0; } B. 思路:主要是观察同时要思考,思维题 #include<bits/stdc++.h> ...