0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2020-03-18 11:23:00 +08:00
parent 8b2a33363e
commit 9723c52fc2
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

14
AcWing/738/738.cpp Normal file
View File

@ -0,0 +1,14 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int v;
cin >> v;
for (int i = 0, x = v; i < 10; i++, x *= 2) {
printf("N[%d] = %d\n", i, x);
}
return 0;
}