본문 바로가기

프로그래밍105

sts4 설치 및 설정 sts 다운로드--> https://spring.io/tools -->Spring Tools 4 for Eclipse --> 각자 환경에 맞는 버전으로 설치하기 sts 설정!!! -- https://kjchoi.co.kr/17 참고 windows-preferences - java - installed JREs - add - JRE home : (자바설치폴더) - finish - 추가한 jdk 선택하고 apply windows-preferences - java - compiler - 11 선택 encoding 설정 windows-preferences - General - content types - text - default encoding - utf-8 update!! windows-preferences.. 2023. 4. 4.
about_Execution_Policies vscode 터미널에서 명령을 실행할 때 발생 할 수 있는 오류 1. 검색(돋보기)를 누르고, powershell 을 검색 2 windows PowerShell 프로그램을 관리자 권한으로 실행합니다. 3. Get-ExecutionPolicy 명령어를 작성하면 본인의 권한? 상태가 보여집니다. 4. 권한이 RemoteSigned 가 아니라면 Set-ExecutionPolicy RemoteSigned 를 입력 5. Get-ExecutionPolicy 명령어로 다시 한번 확인 하면 RemoteSigned로 변경 확인. 2022. 10. 24.
아나콘다 설치 https://www.anaconda.com/products/distribution Anaconda | Anaconda Distribution Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 각 운영체제에 맞는 아나콘다를 다운로드 한다. 맥은 64-Bit Graphical Installer (591 MB) 로 다운로드 해서.. 다음 다음 (긍정적으로) 실행한다. 맥에서 터미널을 새로 열고 ## 아나콘다 버전 확인 conda --version ## 잘 설치되었다면 설치된 버전을 보여준다. con.. 2022. 9. 14.
IfExam4 public class IfExam06 { /* * 영문 대문자를 입력받아 'A'이면 “매우잘함”, * 'B'이면 “잘함”, 'C'이면 “보통임”, * 'D'이면 “노력요함”, 'F'이면 “낙제”, * 그 외 문자이면 “잘못입력”이라고 출력하는 프로그램을 작성하시오. 입력예:B 출력예:잘함 */ public static void main(String[] args) { // TODO Auto-generated method stub } } 2021. 11. 23.