#include<stdio.h> int main(){ int num; scanf("%d", &num); for(int i = 1; i<= num; i++){ for(int j = i; j <=num; j++){ printf("*"); } printf("\n"); } return 0: 사진과 같이 코드를 작성 후에 디버깅하면 아래 사진과 같은 settings.json 파일이 뜨는데 왜 그런거고 해결 방법 아시는 분 계실까요? { "explorer.confirmDelete": false, "workbench.editorAssociations": { "*.ipynb": "jupyter.notebook.ipynb" }, "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "python.pythonPath": "C:\\Users\\hwaja\\AppData\\Local\\Programs\\Python\\Python38\\python.exe" }
1.6K
1
0
윈비·2021-06-24
minGW와 함께 사용하는 경우 그런 이슈가 발생할 수 있는 것 같습니다.
다음과 같이 설정해보시기 바랍니다.
먼저 프로젝트 폴더에 .vscode라는 폴더를 만듭니다.
만든 .vscode 폴더 안에 tasks.json 파일을 만듭니다.
만든 .vscode 폴더 안에 launch.json 파일을 만듭니다.
만든 ....