본문 바로가기
반응형

array4

5. Array and Functions[C Basic] 5.1. Write a program that produces 20 random numbers between 1 and 20. The program should store all non-duplicate values in an array (s.t., first value in Array[0], second value in Array[1], …) Use a single array to accomplish this task. #include #include #include int check_array(int array[],int i){ int j; for(j=0;j 2021. 11. 7.
Chapter 8. Multidimensional Arrays(2)[Java Basic] 8.H - 게임: 커넥트포 Time Limit: 1s Memory Limit: 128MB DESCRIPTION 커넥트포는 두명의 플레이어가 번갈아가며 7개의 열과 6개의 행으로 구분된 보드에 색깔로 구분된 말을 떨어 뜨리는 방식으로 진행되는 보드게임입니다. Connect four is a two-player board game in which the players alternately drop colored disks into a seven-column, six-row vertically suspended grid, as shown below. 게임의 승리조건은 행, 열, 대각선 방향 중 하나로 본인의 말을 연속적으로 4개 배치하는 것입니다. 빨강R과 노랑Y순으로 게임이 진행되고, 말이 떨어지는 열의 번.. 2021. 11. 6.
Chapter 8. Multidimensional Arrays(1)[Java Basic] 8.A - 한주에 얼마나 일하나? Time Limit: 1s Memory Limit: 128MB DESCRIPTION 요일별 직원들의 작업시간이 2차 배열에 들어 있다. 배열의 매 행에는 직원의 일주일 작업시간이 열로 구분되어 저장되어 있다. 예를 들어, 8명의 직원의 작업시간은 다음 그림처럼 저장된다. 여러분은 각 직원의 작업시간을 입력 받아서 한 주 동안 가장 많이 일한 직원부터 내림차순으로 출력하는 프로그램을 작성해야 한다. Suppose the weekly hours for all employees are stored in a two-dimensional array. Each row records an employee's seven-day work hours with seven columns. F.. 2021. 11. 6.
Chapter 7. Single-Dimensional Arrays[Java Basic] 7.A - 성적 주기 Time Limit: 1s Memory Limit: 128MB DESCRIPTION 학생들의 점수를 입력받아서 최고점을 찾아내고, 이를 토대로 학생들의 성적을 결정해주는 프로그램을 작성하세요. 규칙은 다음과 같습니다. 성적이 최고점-10 이상이면 A 성적이 최고점-20 이상이면 B 성적이 최고점-30 이상이면 C 성적이 최고점-40 이상이면 D 그외는 F Write a program that reads student scores, gets the best score, and then assigns grades based on the following scheme: Grade is A if score is ≥ best - 10 Grade is B if score is ≥ best - .. 2021. 11. 5.
반응형