fishersheep의 등록된 링크

키자드에 등록된 총 306개의 포스트를 확인하실 수 있습니다.

Tistory

자바 2차원 배열 기본 예제 (100부터 10씩 증가하는 2차원배열)

자바 2차원 배열 기본 예제 (100부터 10씩 증가하는 2차원배열) 100부터 10씩 증가하는 2차원배열입니다 class ex4{ public static void main(String args[]) { int arr[][] = new int[3][3]; int temp=10..

Tistory

자바 빙고, 배열활용 예제

자바 빙고, 배열활용 예제 배열 활용 예제1 import java.util.*; class MultiArrEx1{ public static void main(String []args) { final int SIZE = 10; int x=0, y=0; char[][] board = new char[SIZE][SIZE];..

Tistory

안드로이드 로또번호 생성기 소스

main.java package com.cookandroid.lotto_2; import android.os.Bundle; import android.view.View; import android.widget.TextView; import android.widget.Toast; import androidx.appcompat.app.ActionBar;..

Tistory

안드로이드 친구목록만들기 (리사이클러뷰)

main2.java package doubleslash05.mini.team11; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerVi..

Tistory

안드로이드 textview null값 체크하기, 안드로이드 버튼 디자인 사이트

if(Textview.getText().toString().equals("")) Textview 에 확인하고 싶은 Textview 이름을 넣으면된다. http://angrytools.com/android/button/

Tistory

c언어 예제 하노이탑

#include void hanoi(int n, char from, char tmp, char to) { if (n == 1) printf("원판 1을 %c에서 %c로 옮긴다.\n", from, to); else { hanoi(n - 1, from, to, tmp); printf("원판 %d을 %c에서 %c으로 옮긴다...

1 2 3 4