자유게시판

아직도 고1때 작성한 소스파일이 남아있었을 줄이야....................ㅋㅁㅋ;;
옛날 기억이 새록새록~>ㅁ<
( 고1때 직접 작성한 것이기에, 영어 오타나 오기[誤記]가 있을지도 모릅니다;; )



// Program 2 : Read(Input) values and Calculate Average
// sentinel value is -1
#include <stdio.h>

// function main begins program execution
int main ( void ) {
// define variables
int i; // input count
int value;
int sum;
float average; // average is floating-point number

// initialize
i = 0 ;
sum = 0 ;

// program introduction
printf("*******************************************************************************\n");
printf("Program Introduction\n");
printf("*******************************************************************************\n");
printf("This program calculate integers average.\n");
printf("Do not enter zero or negative value. (Use only positive integer.)\n");
printf("If you enter value for -1, the input phase is end\n");
printf("and result(average) will be come out.\n");
printf("*******************************************************************************\n\n");

// first read value
printf("Input Value : ");
scanf("%d", &value);

// sentinel value is -1 >>> if value is -1, end input 
// error case 1 >>> if value is -1 and i is 0, print error message 1
// error case 2 >>> if value is not legitimate (zero or negative except -1), print error message 2
while ( value >= 0 ) {
sum += value ; // add value to sum
++i ; // increment count

// next read value
printf("Input Value : ");
scanf("%d", &value);
} // end while

/********************************* termination conduct *********************************/

/***** error case 1 *****/
if ( ( value == -1 ) && ( i == 0 ) ) { 
printf("\n[ERROR 1] You didn't input value\n"); // print error message 1
} // end if

/***** error case 2 *****/
else if ( value != -1 ) { 
printf("\n[ERROR 2] Input Error - Don't input negative or zero\n"); // print error message 2
} // end else if

/***** no error *****/
else { 
// calculate average
average = (float)sum / i ;

// print result(average) - precision is .2
printf("\nAverage is %.2f\n\n", average);
} // end else

return 0; // terminate program successfully
}

Who's 미루

?

< 제작한 게임 >

- 피그렛 (Piglet) [완성] : 링크 내림

- 파라딜루전 (Paradelusion) [미완성] : 링크 내림

- 주인잃은 공책 [완성] : http://avangs.info/1090264


< 연구실 홈페이지 >

http://mirulab.xo.st/


< 아방스 게임 실황 방송국 >

http://afreeca.com/miru3137

Comment '4'
  • ?
    TheEK 2013.02.02 20:40
    저에겐 그저 머~~~언 안드로메다 ... ㅠ
  • ?
    미루 2013.02.02 20:52
    안드로메다- ㅋㅁㅋ;;
  • profile
    하늘바라KSND 2013.02.02 21:48
    평균계산기?!
  • ?
    미루 2013.02.02 22:19
    넵~ 양의정수(자연수)들의 평균을 계산하는 매우 기초적인 프로그래밍입니다~ ㅎㅎ;;

List of Articles
분류 제목 글쓴이 날짜 조회 수
공지 아방스 게시물 · 댓글 작성 규칙 (최근 수정일 2015.11.25) 17 file 완폐남™ 2012.07.17 132123
잡담 데드 스페이스 3 클리어! (스포주의, 혈흔주의, 어리신 분들은 주의!) 16 file TheEK 2013.02.21 2149
잡담 우왕 겜메가 PSD도 먹히네요 11 개촙포에버 2013.02.21 1027
잡담 보컬로이드 시유 13 TheEK 2013.02.20 3007
잡담 The Mirror Lies를 클리어 후... 2 Alkaid 2013.02.20 1290
제작 스샷 헐........ 난이도가......... 'Piglet(피그렛) 베타(β)구역' 17 file 미루 2013.02.20 1156
막장 광고쟁이의 습격2- 댓글 도쟁이의 출현 2 하늘바라KSND 2013.02.19 1566
잡담 나 포인트 확인하고싶은데 어디서 봄? 2 개촙포에버 2013.02.19 1140
잡담 방탈출 중독자는 무섭군요... 7 미루 2013.02.19 1058
가입 안녕하세요 4 슈르미츠 2013.02.19 1302
막장 에이스 스크립트 게시판에 광고쟁이가... 6 하늘바라KSND 2013.02.19 1252
잡담 여러분! 이 좋은 업로드 사이트 써보시는게 어떰? 2 은색바람 2013.02.18 1394
잡담 The Mirror Lied........ 10 Alkaid 2013.02.18 1885
막장 딸기 쇼트케이크 4 Alkaid 2013.02.18 1539
제작 스샷 제작 현황과 흔한 클리셰 6 file 레미티 2013.02.17 1460
잡담 겜메로 작업할때 가장 싫은 점은 9 개촙포에버 2013.02.16 986
잡담 25년간 연재된 전설적인 만화가 올해 완결이 납니다. 8 file Roam 2013.02.16 13985
잡담 그림 소모임에 과제는 죽었는가 4 개촙포에버 2013.02.16 1306
아이콘 제작 어캐 하나요? 3 Hiscliff 2013.02.16 1438
잡담 곧 전역이네요.... 9 코르뉴 2013.02.16 844
잡담 으잌 이 괴현상은 뭐시랑께 5 file 레미티 2013.02.16 912
목록
Board Pagination Prev 1 ... 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 ... 758 Next
/ 758