:: ADVANCE ::
dovelet 4 단계 다중 반복문 제곱수 만들기 (make_square) http://59.23.113.171/30stair/make_square/make_square.php?pname=make_square 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 #include using namespace std; void func(int n) { int i, j; for(i = 1; i
109일차 1. 3단계 반복문 hangover http://183.106.113.109/30stair/hangover/hangover.php?pname=hangover 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include using namespace std; int main(void) { double in, sum = 0.0, temp; int i; cin >> in; for(i = 2; sum
106일차 1. 7단계 다단계 배열 lab http://183.106.113.109/30stair/lab/lab.php?pname=lab 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 31 32 33 #include using namespace std; int table[110][110]; int point[110]; int main(void) { int n, i, j, max = 0, who; cin >> n; for(i = 0; i table[i][j]; } } for(i = n-1; i >= 0; i--) { for(j = 0; j