이클립스(487)
-
Ex02-변수 선언후 초기화없이 변수의 데이터 출력
변수 선언후 초기화없이 변수의 데이터 출력 컴파일 및 링크시에도 문제가 없지만 실행시 초기화되지 않고 변수가 사용되었기 때문에 쓰레기값이 출력됩니다. 소스코드 #include int main(void) { int num1; // 변수 num1 (메모리 공간 num1) int num2; // 변수 num2 (메모리 공간 num2) int num3; // 변수 num3 (메모리 공간 num3) printf("%d\n", num1); // 변수num1에 저장된 값을 출력 printf("%d\n", num2); // 변수num2에 저장된 값을 출력 printf("%d\n", num3); // 변수num3에 저장된 값을 출력 return 0; } 출력결과 초기화하지 않고 출력하여 쓰레기값이 출력됨
-
Python을 사용한 프로그램, 프로젝트
Python을 사용한 프로그램 사용하는 것 중에 파이쎤으로 구현된 프로젝트들이 많이 있습니다. BitTorrent http://www.bittorrent.com/ CherryPy, http://www.cherrypy.org/ Django https://www.djangoproject.com/ GIMP http://www.gimp.org/ MoinMoin http://moinmo.in/ Maya http://www.maya-python.com/ PaintShop Pro http://www.paintshoppro.com/en/default.html Scons http://www.scons.org/ Trac http://trac.edgewall.org/ Yum http://yum.baseurl.org/ You..
-
do~while문- 반복문
do~while문· while문이 [선 비교, 후 처리]라 하면 do ~ while문은 [선 처리, 후 비교]이다. · 즉, 조건식에 불만족하더라도 무조건 한번은 수행하게 되어 있습니다.· while 조건식 뒤의 ;(세미콜론) 잊지 말것 do~while 구성 및 동작
-
Ex01-변수 종류별 선언
변수 종류별 선언 변수의 종류 정수형 변수 char형, short형, int형, long형 실수형 변수 float형, double형, long double형 소스코드 #include int main(void) { //스택이라는 메모리 공간에 저장 //int : integer (정수) int a; // 변수 a (메모리 공간 a) int b; // 변수 b (메모리 공간 b) //정수형 변수: char형, short형, int형, long형 //실수형 변수: float형, double형, long double형 int c; // 정수형 변수 선언하기 float d; // 실수형 변수 선언하기 return 0; } 출력결과 출력결과 없음
-
배열에 객체 저장- 10.html
배열에 객체 저장 학습내용 자바와 유사 동일한 패턴 사용시 소스 코드 //생성자 함수 function Student(name, korean, math, english, science){ //속성 지정 //this 전역변수로 this없으면 지역변수 this.name = name; this.korean = korean; this.math = math; this.english = english; this.science = science; //메소드 지정 this.getSum = function(){ return this.korean + this.math + this.english + this.science; }; this.getAverage = function(){ return this.getSum()/4; ..
-
WhileEx03.java-while문-입력값 누적합구하기 및 0입력시 프로그램 종료하기
while문 - 입력값 누적합구하기 및 0입력시 프로그램 종료하기 소스코드 public class WhileEx03 { public static void main(String[] args) { java.util.Scanner input = new java.util.Scanner(System.in); int num = 0; int total = 0; System.out.println("0전까지 입력받은 정수로 합 구하기"); System.out.print("누적할 정수를 입력하세요 > "); while( (num=input.nextInt()) != 0 ){ total += num; System.out.println("누적합계 = " + total); System.out.print("누적할 데이터를 입력 >..