Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75036 sh25_zhuwy 计算2的N次方 C++ 解答错误 0 MS 248 KB 152 2025-12-05 15:04:41

Tests(2/3):


#include<bits/stdc++.h> using namespace std; int main() { int n,k=1; cin>>n; for(int i=1;i<=n;i++) { k=k*2; } cout<<k; return 0; }


测评信息: