Development(8008)
-
Ex03-숫자 출력
숫자 출력 강의내용 숫자 출력 소수점 6자리이상 초과할 경우 반올림과 반내림으로 오차 발생 소스코드 #include int main() { //숫자 출력 printf("%d + %d = %d 입니다 \n",3,7,3+7); printf("%i + %i = %i 입니다 \n",3,7,3+7); printf("%d - %d = %d 입니다 \n",3,7,3-7); printf("%i - %i = %i 입니다 \n",3,7,3-7); printf("10진수 %d는 16진수로 %x, 8진수로 %o 입니다. \n", 30, 30, 30); //16진수와 8진수 부호가 있는 음수 표현 불가 printf("10진수 %d는 16진수로 %x, 8진수로 %o 입니다. \n", -30, -30, -30); printf("1..
-
Unicode 7.0 Character Code Charts, 언어별 유니코드 차트
Unicode 7.0 Character Code Charts 언어별 유니코드 차트 http://www.unicode.org/charts
-
미용실 광고 - 우산 활용
미용실 광고 images.google.com
-
ContinueEx02-3의 배수가 아니거나 7의 배수가 아니라면 출력하고 카운트 증가시키기
3의 배수가 아니거나 7의 배수가 아니라면 출력하고 카운트 증가시키기 소스코드 public class ContinueEx02 { public static void main(String[] args) { int num=0; int count=0; while((num++)
-
Ex02-출력 문자, 확장 특수 출력문자
특수 출력 문자 확장 특수 출력 문자(escape sequence) 문자열안에서 특별한의미로 해석되는 문자를 가리켜 '이스케이프시퀀스'라고 합니다. 종류의미'\a'경고음 출력'\n'줄 바꿈, 개행(new line)'\t'수평 탭으로 일정한 간격 띄우기 탭(tab)'\b'백스페이스로 뒤로 한 칸 이동 backspace'\r'동일한 줄의 맨 앞 칸으로 커서 이동 carriage return'\f'출력 용지를 한 페이지 넘김 form feed(폼 피드)'\\'\(역슬래시)문자 출력'\''' (작은 따옴표)문자 출력 single quote'\"'" (큰 따옴표)문자 출력 double quote'\0'널문자 출력 null 소스 코드 #include int main(void) { printf("나의 이름은 \"홍길..
-
An Introduction to Statistical Learning, 데이터 분석, R Code, pdf
An Introduction to Statistical Learning site http://www-bcf.usc.edu/~gareth/ISL/ Introduction to Statistical Learning-Youtube http://youtu.be/St2-97n7atk An Introduction to Statistical Learning 목차 Preface vii 1 Introduction 1 2 Statistical Learning 15 2.1 What Is Statistical Learning? . . . . . . . . . . . . . . . . . 15 2.1.1 Why Estimate f? . . . . . . . . . . . . . . . . . . . . 17 2.1.2 How ..