코드 리뷰 과정에서 주로 다른 팀원들의 코드를 리뷰하는 데에 포커스를 맞추었고, 제 코드는 코드 리뷰를 통해 변경된 부분이 없었습니다. 이후 등장하는 내용은 기존에 수업에서 받은 test3_4.py 파일에서 달라진 주요한 부분들을 간단히 서술합니다. 만약, 정확하게 diff 된 내용을 보고 싶으시다면 아래의 링크에 접속하여 Files changed 탭에서 확인하실 수 있습니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.time.LocalDate; | |
import java.time.format.DateTimeFormatter; | |
public class DateDemo { | |
public static void main(String[] args) { | |
LocalDate localDate = LocalDate.now(); // 연월일만 정보를 가지는 날짜 객체 | |
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy년 M월 dd일");//날짜 형식 지정객체 | |
String dateFormatted = localDate.format(formatter);//날짜 형식 지정 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PmOperator { | |
public static void main(String[] args) { | |
int x = 0; | |
int y = 0; | |
/* | |
* 후위 증감연산자 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RPi.GPIO as GPIO | |
import time | |
from enum import Enum | |
import functools | |
import threading | |
import getch | |
class Motor: | |
''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.week8; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
import io.week8.Library.LibraryBook; | |
public class LibraryDemo { | |
public static void main(String[] args) { |
Hi, this is Kim Tae-hoon who is responsible for the Wanna One team's first presentation. We make presentations with the topic of a block chain. Have you heard a lot?
First, I will give you some information about cryptography such as Bitcoin and Ethereum. Next, 경태 will introduce basic characters of blockchain. Then, 병찬 is supposed to explain how blockchain works, in more detail way.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RPi.GPIO as GPIO | |
GPIO.setwarnings(False) | |
GPIO.setmode(GPIO.BOARD) | |
import time | |
import multiprocessing as mp | |
import rcar # 구동체의 움직임에 대한 기능을 담고 있는 코드이다. | |
import sensors # 센서들의 기능을 담고 있는 코드이다. |
OlderNewer