Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
47675 pengyinming 整除序列 C++ 解答错误 70 1 MS 692 KB 138 2024-02-01 14:19:37

Tests(7/10):


#include <iostream> using namespace std; int main() { int n; cin>>n; while(n!=0) { cout<<n<<" "; n/=2; } return 0; }


测评信息: