提交时间:2024-03-09 17:35:29

运行 ID: 137127

# include <bits/stdc++.h> using namespace std ; int main ( ) { unsigned long long n ; cin >> n ; for ( int i = n ; i >= 1 ; i -- ) { unsigned long long l = pow ( 2 , i ) ; cout << l << endl ; } return 0 ; }