#include<iostream>using namespace std;int main() { int i=1; cout << i << "\n" << i++;} 이거 왜 2 1 로 출력이 되나요?
댓글 0