摘要:
#include <stdio.h> long long func(int n){ if(n==1){ return 2; }else{ return 2*func(n-1); } } int main(){ int n; long long f; while(scanf("%d",&n)!=EOF 阅读全文
posted @ 2023-10-31 23:09
zhouhongyu
阅读(15)
评论(0)
推荐(0)