티스토리 뷰
2013.07.03 스터디 숙제 안내
아래의 코드를 직접 손으로 타이핑하고, 그 결과물을 스크린 샷 찍은 후 파일로 저장하여 제출합니다. 파일명 규칙 예) 1-1번 문제는 1-1.jpg 라는 이름으로 생성
이미지는 압축하여 yjaeseok@gmail.com으로 압축하여, 다음 스터디전(7/7)까지 제출
소스는 assignment라는 폴더 밑에 1 폴더 밑에 1-1.c와 같은 형식으로 저장합니다.
(첫 번째 과제는 생각하는 능력보다는 코딩을 하는 환경을 익히는 과제를 냈습니다. )
1-1
#include <stdio.h>
int main(void)
{
printf(“[Hello, World!\n]”);
return 0;
}
1-2
#include <stdio.h>
int main(void)
{
printf(“[%c”, ‘H’);
printf(“%c”, ‘e’);
printf(“%c”, ‘l’);
printf(“%c”, ‘l’);
printf(“%c”, ‘o’);
printf(“%c”, ‘,’);
printf(“%c”, ‘W’);
printf(“%c”, ‘o’);
printf(“%c”, ‘r’);
printf(“%c”, ‘l’);
printf(“%c”, ‘d’);
printf(“%c]\n”, ‘!’);
return 0;
}
1-3
#include <stdio.h>
int main(void)
{
printf(“[%d]”, 123);
return 0;
}
1-4
#include <stdio.h>
int main(void)
{
printf(“[%5d]”, 123);
return 0;
}
1-5-1
#include <stdio.h>
int main(void)
{
printf(“[%-5d]”, 123);
return 0;
}
1-5-2
#include <stdio.h>
int main(void)
{
printf(“[%+d]”, 123);
return 0;
}
1-6
#include <stdio.h>
int main(void)
{
printf(“[%s]”, “Hello, World!”);
return 0;
}
1-7
#include <stdio.h>
int main(void)
{
printf(“[%.10f]”, 10/3.0f);
return 0;
}
1-8-1
#include <stdio.h>
int main(void)
{
printf(“[%.10f]”, 10/3.0f);
return 0;
}
1-8-2
#include <stdio.h>
int main(void)
{
printf(“[%.*f]”, 5, 10/3.0f);
return 0;
}
1-9
#include <stdio.h>
int main(void)
{
printf(“[%.*f]”, 2, 10/3.0f);
return 0;
}
1-10
#include <stdio.h>
int main(void)
{
printf(“[%s]\n”, “수고하셨습니다. 화이팅합시다!!”);
return 0;
}
'Study > Language >' 카테고리의 다른 글
GDG SSU - Summer C Study 20130709(3일차) (0) | 2013.07.13 |
---|---|
GDG SSU - Summer C Study 20130705(2일차) (0) | 2013.07.13 |
[C언어] Restrict(한정자)의 사용 (0) | 2013.03.31 |
Eclipse 설치 후 내가 주로 하는 일들 (0) | 2013.03.22 |
내가 주로 쓰는 vim 설정 (0) | 2013.03.21 |
- Total
- Today
- Yesterday
- 리눅스 커널 2.6
- 그래비트랙스
- 윤재석
- 해커톤
- gdgssu
- 리눅스
- 소설네트워크2
- 숭실대
- WatchFaceHack
- 릴레이대회본선
- yjaeseok
- 서버개발자
- AndroidWear
- GDG
- 창의과학교구
- Linux
- 핸즈온머신러닝
- Developing on AWS
- 안드로이드폰
- watchface
- 창조경제혁신센터
- jakeyoon
- gdg watchfacehack
- Jake Yoon
- 리눅스 커널 2.6 구조와 원리
- 안드로이드
- 하쭈서쭈
- GDG SSU
- jaeseokyoon
- 리눅스2.6
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |