태그>main(총 28개의 글)
'main' 관련 최근글
-
- 2012년 11월 그날의 만찬 (2) _ Main and Dessert
-
푸른별출장자의 먹고 살고 일하고 느끼고 ... by 푸른별출장자|2012/11/21 21:50
<?-ml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />대충 자신이 앉을 자리 표를 받아 찾아서 앉으면 높으신 분들이 회사와 창업자의 정신에 관해 ..
만찬, 디너파티, Dinnerparty, Main, Dessert
- 2012년 11월 그날의 만찬 (2) _ Main and Dessert
-
- [EFL] ecore main loop의 이해
-
천재태지의 세상 돌려보기 by 천재태지서주영|2012/04/09 22:58
[ EFL 게시물 목차 : http://seoz.egloos.com/3458699 ] 안녕하세요? 천재태지 서주영입니다. 이번 포스트에서는 EFL의 핵심중 하나인 ecore main loop[1]에 대해서 알아보겠습니다. 여느 GUI 프로그..
EFL, ecore, 이해, understanding, 기초
- [EFL] ecore main loop의 이해
-
-
- 마인강변
-
Ein normales Leben von Song by Blumentopf|2011/07/14 13:49
독일 도착한지 이틀째 되던 날이였나? 친구만나서 핸디도 구입하고 불고기도 먹고 나중엔 강변에 앉아서 맥주 마셨다. 그리고 호스텔 돌아가기 전 찍었던 사진들. 수명이 다해가는 똑딱이로 찍은건데도 이만치 ..
- 마인강변
-
- 달력 프로그램 made by c
-
Visual C++ Programing 안녕하세요 민군입니다! by 민군|2011/04/07 12:16
#include int main() { int Year, Mon; int M[12]={31, 0, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int Stand_Year=0; int Start_One=0; int Mon_One=0; int r; printf("n -연도를 입력해 주세요 : "); scanf("%d", &Ye..
- 달력 프로그램 made by c
-
- A Book on C 3장
-
Sam Kim의 블로그 by Sam Kim|2011/03/26 18:32
printf를 통해서 back space 하는 방법printf("abc");printf("%c", 'b');라고 치면 출력 값은?ab가 출력된다.64비트 int를 사용 방법. unsigned _int64 ux = 20000000000000; pri..
- A Book on C 3장
-
- ubuntu c# gildang how to - 26
-
길당 by 길당|2010/12/17 16:08
= C# 정리 안녕하세요, 저는 길당(홍길한)이라 합니다. C#에 대해서 다시 정리를 해보도록 할 것입니다. 변수(variable)란 메모리(RAM)의 일정 부분에 숫자나 문자를 저장하는 저장소를 말합니다...
- ubuntu c# gildang how to - 26
-
- 눈금찾기 프로그램 'ㅅ '(재귀함수연습)
-
Forest For Rest (휴식의숲) by AntiNomy|2010/01/28 16:39
#include #define MAX 1000 int rularinfo[1000]; void Rular(int s, int e, int l); int main() { int tlength; int cuttingpoint[MAX]; int count = 0; int i; printf("지금부터 자눈금만들어본다'ㅅ' /n자길이 신청받음 ' ㅅ' : "); scanf("%d..
- 눈금찾기 프로그램 'ㅅ '(재귀함수연습)
-
- 프로그래밍 연습흔적 'ㅅ' (반복문)
-
Forest For Rest (휴식의숲) by AntiNomy|2010/01/18 15:22
#include #include double realVolume(double a, double b, double h); double approVolume(double a, double b, double h, int n);int main() { double a, b, h; int n; double rV, aV; while(scanf("%lf %lf %lf %d&quo..
- 프로그래밍 연습흔적 'ㅅ' (반복문)
-
- switch 사용 예제임 'ㅅ'
-
Forest For Rest (휴식의숲) by AntiNomy|2009/09/17 14:51
/* switch 사용 예제 임 'ㅅ' */#include int main() { int n; printf("정수입력해 : "); scanf("%d", &n); switch(n) { case 1: printf("A1"); printf("A2"); break; case 2: printf("b1&q..
- switch 사용 예제임 'ㅅ'
-
- 프로그래밍 수업 9월 11일 'ㅅ' (함수사용)
-
Forest For Rest (휴식의숲) by AntiNomy|2009/09/11 15:51
/* 화씨온도 섭씨바꾸기 함수선언사용판'ㅅ' */#include double FahToCen(double fah);int main() { double fah = 124.5, cen; cen = FahToCen(fah); printf("%fn", cen); return 0; } double FahToCen(double fah) { double..
- 프로그래밍 수업 9월 11일 'ㅅ' (함수사용)
-