水题一枚,不知道咋地就碰上了……
#include<bits/stdc++.h> using namespace std; int main() { long long int n; cin >> n; while(n > 1) { cout << n << ' '; n = n / 2; } cout << 1 << endl; return 0; }
请问这个题同C语言怎么写
差不多啊
#include<stdio.h> int main() { long long int n; scanf("%d",&n); while(n > 1) { printf("%d",n); n = n / 2; } printf(1); return 0; }
时隔一年,这种题现在已经难不住我了,去年这个时候可真的是难题啊!!!
最喜欢搞水题了
#include <iostream> using namespace std; long long n; int main() { cin >> n; for (cin >> n; n; n /= 2) cout << n << ' '; return 0; }
啊哈哈哈
请问这个题同C语言怎么写
差不多啊
时隔一年,这种题现在已经难不住我了,去年这个时候可真的是难题啊!!!
最喜欢搞水题了啊哈哈哈