카테고리 없음 복리의 마법사 2017. 8. 8. 14:49
/** * Created by Gney on 2017-07-13. */ public class Practice { public static void main(String[] args) { String dna = "GATCCGCCCGCCTCGGCCTCCCAAAGTGCTGGGATTACAGGTGTGAGCCA" + "CCACGCCCGGCTAATTTTTATTTATTTATTTAAAGACAGAGTCTCACTCT" + "GTCACTCAGGCTAGAGTGCAGTGGCACCATCTCAGCTCACTGCAGCCTTG" + "ACCTCCCTGGGCTCCGGTGATTTCACCCTCCCAAGTAGCTAGGACTACAG" + "GCACATGCCACGACACCCAGCTAATTTTTTATTTTCTGTGAAGTCAAGGT" + "CTTG..
더 읽기
카테고리 없음 복리의 마법사 2017. 8. 8. 14:27
public class Practice { public static void main(String args[]) { int[] intArray = new int[100]; int i =0; int total = 0; for(i=0; i
카테고리 없음 복리의 마법사 2017. 8. 8. 14:06
public class Practice { public static void main(String args[]) { int[] arr1 = {1,2,3}; int[] arr2 = {4,5,6}; arr2 = arr1; arr1[0] = 100; System.out.println(arr2[0]); //주소값이 같아졌기 때문에 100 출력 } }
카테고리 없음 복리의 마법사 2017. 8. 8. 13:58
public class Practice { public static void main(String args[]) { int [] intArray = new int [5]; intArray[0] = 1; intArray[1] = 2; intArray[2] = 3; intArray[3] = 4; intArray[4] = 5; //System.out.println(intArray[2] + intArray[4]); for(int i = 0; i < intArray.length; i++) { System.out.println(intArray[i]); } } }
카테고리 없음 복리의 마법사 2017. 8. 8. 13:46
public class Main { public static void main(String[] args) { int koreanScore, mathScore, scienceScore, computerScore; double average; koreanScore =86; mathScore =94; scienceScore=87; computerScore=100; // 각 과목 점수 // 이곳에 코드를 작성하세요. average =(double)(koreanScore+mathScore+scienceScore+computerScore)/4; // 평균 점수 // 이곳에 코드를 작성하세요. System.out.println(average); }}
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); }} public class HelloWorld - HelloWorld 라는 클래스를 정의한다. public static void main(String[] args) { ...} 메소드 - 클래스 안에 정의된 함수 System.out.println("Hello, World!"); - System이라는 자바에 내장되어 있는 클래스의, out이라는 클래스 변수의, println이라는 메소드를 호출하라는 뜻
카테고리 없음 복리의 마법사 2017. 8. 8. 00:13
numbers = []i = 0while i < 10: i = i + 1 numbers.append(i) print(numbers) i = 0while i < len(numbers): if numbers[i] % 2 != 0: del numbers[i] else: i = i + 1 print(numbers) numbers.insert(0, 20) print(numbers) numbers = sorted(numbers)print(numbers) primes = [2, 3, 5, 7, 11, 13, 17, 19, 23] print(7 in primes)print(12 in primes) TrueFalse 거꾸로 값이 없는지 확인하려면 in 앞에 not을 붙이기 primes = [2, 3, 5, 7, 11, ..
카테고리 없음 복리의 마법사 2017. 8. 7. 21:35
I watched Stranger things.It was so interesting. So I watched all episodes.I am glad that Season 2 will begin soon.