while 반복문 4while 반복문 4

Posted at 2013. 11. 6. 18:11 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int i, n, sum;


printf("정수를 입력하세요 : ");

scanf("%d", &n);


i = 1;

sum = 0;


while (i <= n)

{

sum += i;

i++;

}


printf("1부터 %d까지의 합은 %d입니다.", n, sum);


}



'2학기 > C언어' 카테고리의 다른 글

while 반복문 6  (0) 2013.11.06
while 반복문 5  (0) 2013.11.06
while 반복문 3  (0) 2013.11.06
while 반복문 2  (0) 2013.11.06
while 반복문  (0) 2013.11.06
//

while 반복문 3while 반복문 3

Posted at 2013. 11. 6. 17:57 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int n;


printf("======================\n");

printf("    n       n의제곱  \n");

printf("======================\n");


n = 1;

while(n<=10)

{

printf("  %5d      %5d\n", n, n*n);

n++;

}

}



'2학기 > C언어' 카테고리의 다른 글

while 반복문 5  (0) 2013.11.06
while 반복문 4  (0) 2013.11.06
while 반복문 2  (0) 2013.11.06
while 반복문  (0) 2013.11.06
4차 10번  (0) 2013.10.31
//

while 반복문 2while 반복문 2

Posted at 2013. 11. 6. 17:48 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int n;

int i=1;


printf("출력하고 싶은 단 : ");

scanf("%d", &n);


while (i <= 9)

{

printf("%d*%d = %d \n", n, i, n*i);


i++;

}

}



'2학기 > C언어' 카테고리의 다른 글

while 반복문 4  (0) 2013.11.06
while 반복문 3  (0) 2013.11.06
while 반복문  (0) 2013.11.06
4차 10번  (0) 2013.10.31
4차 9번  (0) 2013.10.31
//

while 반복문while 반복문

Posted at 2013. 11. 6. 17:42 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int meter;

int i = 0;


while (i<3)

{

meter = i * 1609;

printf("%d 마일은 %d 미터입니다.\n", i, meter);

i++;

}


}



'2학기 > C언어' 카테고리의 다른 글

while 반복문 3  (0) 2013.11.06
while 반복문 2  (0) 2013.11.06
4차 10번  (0) 2013.10.31
4차 9번  (0) 2013.10.31
4차 8번  (0) 2013.10.31
//

데이터베이스 실습데이터베이스 실습

Posted at 2013. 11. 6. 15:45 | Posted in 2학기/DB

http://net.yjc.ac.kr:5560/isqlplus/에 접속


사용자이름 : s학번

암호 : q학번

접속 식별자 : database









CREATE TABLE department

(

dept_no NUMBER(4),

dept_name VARCHAR2(30) NOT NULL,

chief NUMBER(5),

assistant VARCHAR2(10),

dept_tel NUMBER(5),

location VARCHAR2(6),

CONSTRAINT department_dept_no_pk PRIMARY KEY(dept_no));


입력후 실행 


테이블 생성.


desc department





ALTER TABLE department

ADD nbrOfFaculty NUMBER;


로 열을 추가하면





하나의 열이 더 추가된것을 볼수있음.



DROP TABLE department;

에러발생!


DROP TABLE 이름 ;


테이블삭제 명령문

'2학기 > DB' 카테고리의 다른 글

실습  (0) 2013.11.13
냉무  (0) 2013.11.13
데이터베이스의 용어의 기원  (0) 2013.10.10
데이터베이스 시스템이란?  (0) 2013.10.10
정보 모델링  (0) 2013.10.10
//

4차 10번4차 10번

Posted at 2013. 10. 31. 13:43 | Posted in 2학기/C언어


#include <stdio.h>

int main()

{

int n;


printf("입력 : ");

scanf("%d", &n);


switch(n)

{

case 1 : printf("%d\n", n);

case 2 : printf("%d\n", n+1);

case 3 : printf("%d\n", n+2);

default : printf("실행 종료!");

}

return 0;

}


switch는 정수밖에 받지 못하므로 float를 못쓰며 {}를 써주지 않아 오류가 남.

break문은 의도적으로 안쓴것 같아서 냅둠

'2학기 > C언어' 카테고리의 다른 글

while 반복문 2  (0) 2013.11.06
while 반복문  (0) 2013.11.06
4차 9번  (0) 2013.10.31
4차 8번  (0) 2013.10.31
4차 7번  (0) 2013.10.31
//

4차 9번4차 9번

Posted at 2013. 10. 31. 13:43 | Posted in 2학기/C언어


#include <stdio.h>

int main()

{

double x;

char op;



printf("입력단위가 cm이면 \'c\'나 \'C\'를, inch이면 \'i\'나 \'I\'를 입력하세요.\n");

printf("입력단위 : ");

scanf("%c", &op);

printf("입력 값 : ");

scanf("%lf", &x);


if (op == 'i' || op == 'I')

printf("입력한 %0.2lf inch는 %0.2lf cm입니다.", x, x*2.54);

else if (op == 'c' || op == 'C')

printf("입력한 %0.2lf cm는 %0.2lf inch입니다.", x, x/2.54);



return 0;

}



'2학기 > C언어' 카테고리의 다른 글

while 반복문  (0) 2013.11.06
4차 10번  (0) 2013.10.31
4차 8번  (0) 2013.10.31
4차 7번  (0) 2013.10.31
4차 6번  (0) 2013.10.31
//

4차 8번4차 8번

Posted at 2013. 10. 31. 13:43 | Posted in 2학기/C언어



8번


#include <stdio.h>

int main()

{

int age;


printf("나이를 입력하세요 : ");

scanf("%d", &age);


if (age <= 6 || age >= 70)

printf("무료입장입니다.\n");

else 

printf("입장료는 3,000원입니다.");


return 0;

}



'2학기 > C언어' 카테고리의 다른 글

4차 10번  (0) 2013.10.31
4차 9번  (0) 2013.10.31
4차 7번  (0) 2013.10.31
4차 6번  (0) 2013.10.31
4차 5번  (0) 2013.10.31
//

4차 7번4차 7번

Posted at 2013. 10. 31. 13:43 | Posted in 2학기/C언어



#include <stdio.h>

int main()

{

int grade;


printf("점수를 입력하셈 : ");

scanf("%d", &grade);


if (grade<60)

printf("F학점입니다. ㅅㄱ군대 ㄱㄱ\n");

else if(grade<70)

printf("D학점입니다. 열심히하세요\n");

else if(grade<80)

printf("C학점입니다. 분발하세요\n");

else if(grade<90)

printf("B학점입니다. 조금더 노력하세요.\n");

else if(grade<=100)

printf("A학점입니다. 사람이 아니시군요!\n");


return 0;

}





'2학기 > C언어' 카테고리의 다른 글

4차 9번  (0) 2013.10.31
4차 8번  (0) 2013.10.31
4차 6번  (0) 2013.10.31
4차 5번  (0) 2013.10.31
4차 3번  (0) 2013.10.31
//

4차 6번4차 6번

Posted at 2013. 10. 31. 13:43 | Posted in 2학기/C언어


#include <stdio.h>

int main()

{

int grade;


printf("학년을 입력하세요 : ");

scanf("%d", &grade);


switch(grade)

{

case 1:

printf("등록금은 130만원입니다.");

break;

case 2:

printf("등록금은 100만원입니다.");

break;

case 3:

printf("등록금은 110만원입니다.");

break;

default :

printf("학년을 잘못 입력하였습니다.");

break;

}

return 0;

}



'2학기 > C언어' 카테고리의 다른 글

4차 8번  (0) 2013.10.31
4차 7번  (0) 2013.10.31
4차 5번  (0) 2013.10.31
4차 3번  (0) 2013.10.31
4차 2번  (0) 2013.10.31
//