본문 바로가기

C.E36

배열의 합과 평균 구하고 출력하기 사용자에게 배열의 값을 입력받는다. 배열의 값을 입력받은 프로그램은 입력받은 배열의 합과 평균을 구해 그 값과 배열의 내용을 출력한다. #include #define ROW 3 //행의 수 #define COL 3 //열의 수 //서브 함수의 프로토타입 선언 void printArray(int table[ROW][COL]); int Sum(int table[ROW][COL]); float Avg(int SumVal); void main() { int i, j; int nTable[ROW][COL]; //배열선언 int nSumVal; //합계를 저장할 변수 for(i=0; i 2009. 1. 15.
기본 어셈블러의 기능 2.1 기본 어셈블러의 기능 1.연산명령어 2.어셈블러 지시자 -버퍼 2.1.1 단순 SIC 어셈블러 어셈블러의 기능 : hello.s -> hello.o 1.연상명령어 -전방참조 : 나중에 정의되어지는 레이블을 참조하는 것 2.어셈블러 지시자(의사 명령어) -목적 프로그램에 영향은 주지만, 기계 명령어로 번역은 되지 않는다. 즉 어셈블러 자체의 명령어라고 보면 된다. -Ex) BYTE, WORD, RESB, RESW, END, START, BASE, NOBASE, LTORG, EQU, ORG -헤더: 프로그램 이름, 시작 주소, 프로그램의 전체 길이 -텍스트: 번역된 명령어, 프로그램 데이터, 프로그램이 로드될 주소 지시 -엔드: 프로그램의 끝을 알리고 프로그램 실행이 시작될 주소(=실행될 첫 번째 명.. 2008. 12. 7.
Class Jpanel, Method paintComponent paintComponentprotected void paintComponent(Graphics g) Calls the UI delegate's paint method, if the UI delegate is non-null. We pass the delegate a copy of the Graphics object to protect the rest of the paint code from irrevocable changes (for example, Graphics.translate). If you override this in a subclass you should not make permanent changes to the passed in Graphics. For example, you should.. 2008. 11. 25.
[event]Interface MouseListener java.awt.event Interface MouseListener public interface MouseListener extends EventListener //EventListener를 확장한 The listener interface for receiving "interesting" mouse events (press, release, click, enter, and exit) on a component. (To track mouse moves and mouse drags, use the MouseMotionListener.) The class that is interested in processing a mouse event either implements this interface (and .. 2008. 11. 25.