Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
38883 gaoyx 整除序列 C++ 解答错误 70 0 MS 692 KB 146 2023-04-22 13:16:10

Tests(7/10):


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


测评信息: