일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- humble development guides
- ros2 환경설정
- CODEUP 6073
- Nav2 document
- foxy nav2
- ros2 foxy tutorial
- Foxy tutorial
- humble 환경설정
- ros2 튜토리얼 환경설정
- ros2 foxy docker
- first-time robot setup guide
- development guides
- nav2 development guides
- ros2 remapping
- ros2 development guides
- nav2 tutorial
- nav2 getting started
- Python
- ros2 configuring environment
- nav2 development guides
- nav2 dev contatiner
- CodeUp
- docker foxy
- ROS FOXY 튜토리얼
- 코드업
- error
- ros2 튜토리얼
- nav2 first-time robot setup guide
- nav2 설치
- nav2 튜토리얼
Archives
- Today
- Total
BAN2ARU
CODEUP 1099번 본문
반응형
https://codeup.kr/problem.php?id=1099
#include <stdio.h>
int main()
{
int a[11][11] = {};
int i,j,input,x=2, y=2;
for(i=1; i<=10; i++)
{
for(j=1; j<=10; j++)
{
scanf("%d ",&a[i][j]);
}
scanf("\n");
}
while(a[x][y]!=2 && (x<9||y<9))
{
if(a[x][y]==0)
{
a[x][y]=9;
y++;
}
else if(a[x][y]==1)
{
y--;
x++;
}
}
a[x][y]=9;
for(i=1; i<=10; i++)
{
for(j=1; j<=10; j++)
{
printf("%d ",a[i][j]);
}
printf("\n");
}
}
이로써, C++ 100제 완료!
728x90
'Coding Test > CodeUp' 카테고리의 다른 글
CODEUP 6072번 (0) | 2022.03.09 |
---|---|
Codeup 6099번 (0) | 2021.11.11 |
CODEUP 6033번 (0) | 2021.11.10 |
CODEUP 1079번 (0) | 2021.11.05 |
CODEUP 1076번 (0) | 2021.11.05 |
Comments