대외교육/H-mobility Robotics

[C++] 현대 모비스 Softeer 문제 뼈대와 고려사항.

흑요석s 2023. 10. 6. 18:01

기본 뼈대

#include<iostream>


using namespace std;

int main(int argc, char** argv)
{

	return 0;
}

 

수정

#include<bits/stdc++.h>

using namespace std;

int main()
{

	return 0;
}