• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 689건

root=NULL; while(inp2(in) ==NO) root=node(root, in); printf("\nInput : \n"); printf("----------------------\n\n"); prn(root); root=invert(root); printf("\ninverse : \n"); prn(root); printf("\n\n"); } LIST *node(LIST *rp, char *nin) { if(rp==NULL) { char *temp=NULL; temp = (char*)malloc(strlen(nin)+1
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2004.10.05
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
ested: " + fmt.format(amount)); } else if (amount > balance) { System.out.println (); System.out.println ("Error: Insufficient funds."); System.out.println ("Account: " + acctNumber); System.out.println ("Requested: " + fmt.format(amount)); System.out.println ("Available: " + fmt.format(balance))
  • 페이지 8페이지
  • 가격 1,000원
  • 등록일 2004.10.05
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
; System.out.println("Address: " + address); System.out.println("Balance: " + balance); System.out.println("Active: " + flag); } } public class Account{ public static void main(String [] args){ Data person1 = new Data(); person1.open(true,"신","830-0000","대구광역","007",1456); person1.deposit(10000
  • 페이지 4페이지
  • 가격 2,000원
  • 등록일 2004.07.02
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
j%S].getSungjuk().getEnglish()) continue; temp = a[(j-1)/(M*S)][(j-1)/S%M][(j-1)%S]; a[(j-1)/(M*S)][(j-1)/S%M][(j-1)%S] = a[j/(M*S)][j/S%M][j%S]; a[j/(M*S)][j/S%M][j%S] = temp; } System.out.print(" 영어 : "+a[0][0][0].getSungjuk().getEnglish()); System.out.print(" 전공 : "+a[0][0][0].getMajor()); S
  • 페이지 10페이지
  • 가격 800원
  • 등록일 2003.10.17
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
(루트) -> 제곱근 -> lim, sinx, cosx ....등 4. UML calculator void plus() void minus() ...... → exercise 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2009.06.12
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
자바프로그래밍 응용", "전선", 3 , 1, 3,3); INSERT INTO openingsubject(subjectcode,openingyear,subjectname,classification,academicyear,semaster,lecturetimenum,credit) VALUES("SC1038", 2008, "멀티미디엉응용", "전선", 3 , 1, 3,3); INSERT INTO openingsubject(subjectcode,openingyear,subjectname,cla
  • 페이지 16페이지
  • 가격 5,000원
  • 등록일 2010.03.31
  • 파일종류 텍스트(txt)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
문자열 입력: "); String str2 = s.next(); s.close(); System.out.print("\n두 문자열을 연결한 결과"); System.out.print("=> " + str(str1,str2)); } public static String str(String str1, String str2) { String str3 = str1 + str2; return str3; } } 1. 9장 내용점검 2. 9장 프로그래밍 연습
  • 페이지 19페이지
  • 가격 2,000원
  • 등록일 2008.05.31
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
= i; } } if(minIndex != start) { int dummy; dummy = input[start]; input[start] = input[minIndex]; input[minIndex] = dummy; } start++; } System.out.print("정렬의 결과는 ==> "); for(int i=0; i<n; i++) { System.out.print(input[i] + " "); } } } 1. 7장 내용점검 2. 7장 프로그래밍 연습
  • 페이지 18페이지
  • 가격 2,000원
  • 등록일 2008.06.10
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
s = new Scanner(System.in); System.out.print("임의의 정수 입력: "); int num = s.nextInt(); s.close(); int count=0; for(int j=1; j<=num/2; j++) if(num%j==0) count++; System.out.print(count==1 ? "소수입니다." : "소수가 아닙니다."); } } 1. 6장 내용점검 2. 6장 프로그래밍 연습
  • 페이지 19페이지
  • 가격 2,000원
  • 등록일 2008.06.10
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
프로그래밍 연습 1. 정수 값 23억을 변수에 저장하여 출력하는 프로그램을 작성하시오. public class no1 { public static void main(String[] args) { long longVar = 2300000000L; System.out.println("변수에 저장하여 출력된 결과 : " + longVar); } } 2. 25인치의 길이를 센터미
  • 페이지 9페이지
  • 가격 1,300원
  • 등록일 2008.05.30
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
top