분류 전체보기(15070)
-
HashCalc - 파일 무결성 검사 도구, 해시(Hash) 검사도구
다양한 해시값 추출 프로그램 운영환경 비용 free 직접다운받기 홈페이지 http://www.slavasoft.com/?source=HashCalc.chm 설치파일 다운받기 Downloads > HashCalc 2.02 저장 설치하기 프로그램 실행화면 설치파일에 대한 해시값을 추출한 화면
-
OpenOffice
프로그램 명 OpenOffice (오픈오피스) 운영환경 가격 free OpenOffice에 포함된 문서 작성 도구 목록 워드프로세서스프레드시트프레젠테이션데이터베이스그리기수식편집 다운로드 Download링크 클릭 > http://www.openoffice.org/ko/ Download full installation 클릭(설치파일 다운) Download language pack 클릭(프로그램의 언어설정 파일 다운) 다운로드 완료!
-
SCE- SCE연산 수행으로 인한 주의 사항
SCE연산 수행으로 인한 주의 사항 소스코드 class OperatorSCE { public static void main(String[] args) { int num1=0, num2=0; boolean result; result = (num1+=10)0; //(num1+=10) 10 false //(num2+=10)>0 -> 10>0 -> true // false && true //SCE연산이 수행됩으로써 오른쪽의(num2+=10)는 연산이 수행되어 지지 않습니다. System.out.println("result= "+result); System.out.println("num1= " + num1 + ", num2= " + num2); System.out.println(""); result = (num1..
-
OperatorEx05.java-증감/비교/논리 연산자
증감/비교/논리 연산자 소스코드 public class OperatorEx05 { public static void main(String[] args){ System.out.println("=========증감/비교/논리 연산자========="); System.out.println("논리 곱:"); int a, b; a = b = 10; boolean c = (a++ >= ++b) && (++a > b++); System.out.println("a++ >= ++b && ++a : " + c); System.out.println("a : " + a); System.out.println("b : " + b); System.out.println(""); System.out.println("논리 힙:"); i..
-
Codenames, Tags, and Build Numbers
Codenames, Tags, and Build Numbers https://source.android.com/source/build-numbers.html
-
OperatorEx04.java-논리 연산자
논리연산자 확인 논리 연산자 선조건&&후조건Resulttrue&&truetruetrue&&falsefalsefaluse&& false 선조건||후조건Resulttrue|| truefalse||truetruefalse||falsefalse 이유 연산속도를 빠르게 하기 위해 소스코드 public class OperatorEx04 { public static void main(String[] args){ System.out.println("=========논리 연산자 ========="); boolean t, f, result; t = true; f = false; result = t && f; //논리곱 System.out.println("t && f : " + result); System.out.print..