24 78B1
Giới thiệu
Lớp đã học python - chuyển sang học C++ cơ bản
Link tải CodeBlocks: https://sourceforge.net/projects/codeblocks/files/Binaries/20.03/Windows/codeblocks-20.03mingw-setup.exe/download
Link tải Dev-C++: https://sourceforge.net/projects/orwelldevcpp/
Code:
C++
#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
cout << x * 2;
return 0;
}