12
2025-07-29 18:59:39
发布于:上海
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int a[] = {1, 2, 8, 9, 6, 9, 29, 39, 38, 65, 88, 128};
int main(){
int n;
cin >> n;
if(n <= 12) cout << 0;
else cout << a[n - 13];
return 0;
}
这里空空如也
2025-07-29 18:59:39
发布于:上海
#include<bits/stdc++.h>
using namespace std;
int a[] = {1, 2, 8, 9, 6, 9, 29, 39, 38, 65, 88, 128};
int main(){
int n;
cin >> n;
if(n <= 12) cout << 0;
else cout << a[n - 13];
return 0;
}
这里空空如也
提交答案之后,这里将显示提交结果~
有帮助,赞一个