Page 1 of 1

Codedang Run Feature(Beta) Feedback

안녕하세요, SKKUDING 팀입니다!

최근 코드당에 Run 기능(베타)이 새롭게 추가되었어요.

Run 기능은 내부적으로도 많은 테스트를 거쳤지만, 대부분을 low-level부터 직접 구현해서 예상치 못한 오류가 있을 수 있어요.

사용하시면서 예상과 다르게 동작한 부분이나 불편했던 점, 개선되었으면 하는 부분이 있다면 편하게 알려주세요!

여러분의 소중한 피드백은 개발진이 꼼꼼히 확인하고, 더 나은 기능으로 반영할 수 있도록 노력하겠습니다 🙌

Hello, this is the SKKUDING team!

We’ve recently added a new Run feature (Beta) to Codedang.

While we've conducted extensive internal testing, since most of the functionality was implemented from the low-level up, there may be unexpected errors.

If you encounter any unexpected behavior, inconvenience, or have suggestions for improvement while using it, please feel free to let us know!

Your valuable feedback will be carefully reviewed by our development team and reflected in future updates to make the feature better 🙌

피드백을 작성해주세요! Please give us feedback.

특정 상황에서 일어나는 버그나 문제 상황이 있으셨다면, 작성하신 코드, 행동, 기대 출력 순서로 작성해주시면 더욱 감사하겠습니다! If you are to report a bug, we would appreciate it if you could provide the code you wrote, the user action, and the expected output.
예시 1 (Example 1):
Java 실행 환경에서 127 에러가 났어요. (127 Error occurred on Java Environment)

예시 2(Example 2) 실행 결과가 예상과 달라요. The Output is not same as expected output 사용자 코드(User Code): #include <stdio.h> 

int main() { 

  char name[100]; 

  printf("이름을 입력하세요: "); 

  scanf("%s", name); 

  printf("안녕하세요, %s님!\n", name); 

  return 0; 

}

#include <stdio.h> 

int main() { 

  char name[100]; 

  printf("Please enter your name: "); 

  scanf("%s", name); 

  printf("Hello, %s!\n", name); 

  return 0; 

}

사용자 행동 (User Behavior): 

“홍길동 입력 후 엔터키 입력”

Enter 'HongGilDong' and press the Enter key

실제 출력과 기대 출력의 다른 점 Difference between Real Output and Expected Output:

이름을 입력하세요: 홍길동 

안녕하세요, 홍길동님!

Please enter your name: HongGilDong  

Hello, HongGilDong!

가능하시다면 문제 상황을 캡처해주실 수 있나요? If possible, could you capture a screenshot of the problem situation?