반응형

# 알고리즘 문제 알고리즘 문제연습

## 실수 출력 (System.format)

  • 실수 입력받아 그대로 출력(소수점 6자리까지)
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
    	Scanner scanner = new Scanner(System.in);
        
        float num = scanner.nextFloat();
        
        // 소수점 6자리까지 출력
        String fnum = String.format("%.6f", num);
        
        System.out.println(fnum);
    }
}

 

## 년월일 형식에 맞게 출력 (System.out.format)

  • 년원일 입력받아 형식에 맞게 출력
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
    	Scanner scanner = new Scanner(System.in);
      String temp = scanner.nextLine();

      String[] arr = temp.split("\\.");

      System.out.format("%04d.%02d.%02d", Integer.parseInt(arr[0]), Integer.parseInt(arr[1]), Integer.parseInt(arr[2]));
    }
}

 

 

반응형
반응형

# 코딩테스트 관련 유용한 사이트 정보

## 백준

 

단계별로 풀어보기

단계별은 @jh05013님이 관리하고 계십니다. 단계제목설명정보총 문제내가 맞은 문제1입출력과 사칙연산입력, 출력과 사칙연산을 연습해 봅시다. Hello World!112if문if문을 사용해 봅시다.53for문for문을

www.acmicpc.net

## 코드업

 

문제집 / 기초 100제

 

codeup.kr

## 프로그래머스

 

자바 입문

자바 입문 가장 널리 쓰이는 프로그래밍 언어 Java로 프로그래밍의 기초를 다져보세요. 강의를 다 들었는데, 지금 내가 코딩 테스트 준비를 하고 있다면? 15년차 Java 전문 리더가 직접 이끄는 온라

programmers.co.kr

 

자바로 배우는 자료구조(with 생활코딩)

평가 5.0 3개의 평가 ★★★★★3 ★★★★0 ★★★0 ★★0 ★0

programmers.co.kr

 

자바 중급

평가 5.0 10개의 평가 ★★★★★10 ★★★★0 ★★★0 ★★0 ★0 Gi-Yeong Kim 2020.07.25 02:06 곽지훈 2020.05.11 13:02 Kim Jinwoo 2020.02.29 01:51 강영주 2020.01.19 17:22 김세윤 2019.12.11 14:37 리뷰 더보기

programmers.co.kr

## 구름EDU

 

goorm

구름은 클라우드 기술을 이용하여 누구나 코딩을 배우고, 실력을 평가하고, 소프트웨어를 개발할 수 있는 클라우드 소프트웨어 생태계입니다.

www.goorm.io

## 코드org

 

Code.org

누구든지 컴퓨터 과학을 배우고, 코드를 이용해서 게임, 앱, 예술을 만들 수 있습니다.

studio.code.org

## 코드몽키

 

Coding for Kids | Game-Based Programming | CodeMonkey

CodeMonkey is a leading coding for kids program. Through its award-winning courses, millions of students learn how to code in real programming languages.

www.codemonkey.com

## 타이핑 클럽

 

Free Touch Typing Software

50,000+ Schools and Districts Some of the districts that use TypingClub

www.typingclub.com:443

 

반응형
반응형

# 한글 배경에 사진 삽입 시 검은화면 오류

  • 이력서 작성 등을 위해 한글 문서 작업 시 이력서 사진 넣는 항목에 배경으로 사진을 적용할 경우 간혹 사진과 함께 배경화면이 나오는 경우가 있다.
  • 해당 문제와 관련한 해결 방법은 아래와 같다.
  • 바탕화면 우클릭 > 디스플레이 설정 > 배율 및 레이아웃에서 텍스트, 앱 및 기타 항목의 크기 변경에서 비율을 100%로 변경해주면 된다.
반응형
반응형

# 홈페이지 제작 유용한 사이트

## 공유 기능 버튼 추가

  • 손 쉽게 다양한 항목(카카오, 페이스북 등등)에 대한 공유 기능 추가 가능
  • 주소 : AddThis
 

Get more likes, shares and follows with smart website tools - AddThis

AddThis share buttons, targeting tools and content recommendations help you get more likes, shares and followers and keep them coming back.

www.addthis.com

 

## 폰트 관련

  • 다양한 무료 폰트 제공, 손 쉽게 사용 가능
  • 주소1 (구글폰트) : 구글폰트
  • 주소2 (폰트어썸) : 폰트어썸
 

Google Fonts

Making the web more beautiful, fast, and open through great typography

fonts.google.com

 

Font Awesome

The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options.

fontawesome.com

 

 

## 이미지 관련

 

## 로고 제작

 

Wix Logo Maker

직접 제작하기 브랜드 정보를 제공하면 신속하게 제작되는 맞춤형 로고를 만나보세요. 로고 제작하기

www.wix.com

 

Squarespace

Building a website? Create a logo with the Squarespace logo maker. Build a website with Squarespace with a custom logo from your own design with our own logo maker.

www.squarespace.com

 

## 마커이미지

  • 다양한 무료 마커 이미지 제공
  • 주소 : icons8
 

Download free icons, music, stock photos, vectors

Designers, download the design stuff for free — icons, photos, UX illustrations, and music for your videos.

icons8.com

 

반응형

+ Recent posts