대외교육/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;
}

 

'대외교육 > H-mobility Robotics' 카테고리의 다른 글

KF1D  (0) 2023.09.30
MobileControl  (0) 2023.09.30
omniwheel  (0) 2023.09.30
[H-mobility class][1DOFcontroll-matlab] 4. 마찰보상  (1) 2023.09.30
[H-mobility class][1DOFcontroll-matlab] 3. 중력보상  (0) 2023.09.30