it

it/network

exe파일을 다른파일로 위장하기

1. 폴더 보기 옵션에서 '알려진 확장자명 숨기기' 체크 해제 2. 새로 만들기 logcod.exe 파일 생성( [파일명]cod.exe 면 된다. ) 3. 제어판 -> 국가 및 언어 옵션 -> "언어 탭" -> "자세히" -> 추가 -> 입력언어: 중국어(대만) / 자판배열: 중국어(번체-Unicode) 선택 후 확인 4. 작업표시줄 하단에 언어를 중국어(대만)로 선택 5. log 와 cod 사이에 202e 입력(유니코드) ex)log202ecod.exe 성공했다면 exe파일이지만 확장자가 doc로 바뀐것을 볼 수 있다.

it/programming

1학기 기말 웹프로그래밍 수행평가

주제는 자신을 소개하는 사이트만들기 - HTML/CSS를 이용하여 만드는건데, JS는 필요하지 않다면 사용하지 않는다. 전체 모습 소개 ppt 테스트 사이트 링크 http://hsol7.tistory.com

it/programming

[JAVA] 용돈 저축하기 게임( 자바 숙제 )

남은 돈과 심심지수, 그리고 남은 시간을 적절하게 조정해서 10만원을 모으는게 목표인 게임 선린 fitness club을 약간 모방하였다. me.java( 메인클래스 ) import java.util.Scanner; public class me { public static void main(String args[]) { Scanner sc=new Scanner(System.in); Cont c=new Cont(); System.out.println("*^* 수학여행때 입고갈옷을 사기위해 !! *^*"); while(true) { System.out.print("1. 등록\t2. 용돈\t3.종료\t"); int menu=sc.nextInt(); switch(menu) { case 1: c.enroll();..

it/programming

[JAVA] 다이어터

Fitness_Club- Club.java( 메인 ) import java.util.Scanner; public class Club { public static void main(String args[]) { Scanner sc=new Scanner(System.in); Cont c=new Cont(); System.out.println("*^* 선린 FITNESS CLUB *^*"); while(true) { System.out.print("1. 등록\t2. 운동\t3.종료\t"); int menu=sc.nextInt(); switch(menu) { case 1: c.enroll(); break; case 2: c.exercise(); break; case 3: return; } } } } - Cont..

it/programming

[javascript] 현재 페이지의 주소를 출력해보자

우리가 써야할 코드는 빼고 document.writeln(location.href);원리는 아주 간단하다. document.writeln 은 java에서 System.out,println과 같은 기능을 하는 출력문이다.그리고 페이지 주소가 담겨있는 기본값 location.href 을 불러 출력하는것일 뿐이다. 일단 한번 적용해보았다.원래 http://hsol.tistory.com[글 번호] 였던 url이 로 바꾸었다. 바뀜에 담긴 의미는야매로 주소를 출력하던 것을 전문적으로 바꿨다고 해야할까쓸데없는 교체지만 어떻게보면 나름대로 큰의미가 있다. 스킨 미리보기화면에서 스킨미리보기 창 주소가 뜨는것도 볼 수있고 동일한 글이지만 카테고리 전체보기를 했을때엔 카테고리 주소가 뜨고, 글을 단독으로 클릭했을때엔 게시..

it/programming

[JAVA] 메소드 생성자 사용 League of Legends 상점구현

import java.util.Scanner; class champ { String code, name; int price; champ(String code, String name, int price) { this.code=code; this.name=name; this.price=price; } champ(String code, String name) { this.code=code; this.name=name; this.price=0; } void purchase() { if(this.price==0) System.out.println("이미 구입한 챔피언 입니다."); else { System.out.println(""); switch(this.code) { case "1": System.out.pr..

it/programming

[JAVA] 메소드와 생성자를 이용한 가상 DB 관리

import java.util.Scanner; class Product { String code, name; int price, discount; Product(String code, String name, int price, int discount) { this.code=code; this.name=name; this.price=price; this.discount=discount; } Product(String code, String name, int price) { this.code=code; this.name=name; this.price=price; this.discount=0; } void setDiscount(int discount){this.discount=discount;} int cal..

it/programming

[JAVA] 메소드 함수 사용하기

import java.util.Scanner; class shape { double ban(int a){return a*a*3.14;} int quare(int a, int b){return a*b;} } public class scan { public static void main(String args[]) { Scanner sc = new Scanner(System.in); shape se = new shape(); int a=1, b=1; while(true) { System.out.print("도형을 선택하시오.(1:원, 2:정사각형, 3:종료) : "); int menu = sc.nextInt(); switch(menu) { case 1: System.out.print("원의 반지름을 입력하시오..

반응형
훈솔
'it' 카테고리의 글 목록 (11 Page)