목록알고리즘 (27)
지극히 개인적인 개발블로그

#include using namespace std; int main() { bool ans = false; int year; cin >> year; if ((year % 4 == 0) && (year % 400 == 0 || year % 100 != 0)) ans = true; cout
알고리즘
2019. 9. 13. 18:17

#include using namespace std; int main() { int T; cin >> T; if (T = 90) cout
알고리즘
2019. 9. 13. 18:05