0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00
Baoshuo Ren 2020-09-29 19:54:00 +08:00
parent 7dbd0d35af
commit 12cea7d0b8
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

15
AcWing/708/708.cpp Normal file
View File

@ -0,0 +1,15 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int main() {
std::ios::sync_with_stdio(false);
for (int i = 2; i <= 100; i += 2) {
cout << i << endl;
}
return 0;
}