1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | 집가서 할 것 프로그래머스 비트랑 진도 같이 나가기 티스토리 정리하기 이클립스 설치 배운 것 이클립스 관련 단축키 syso -> ctrl + space 제어 if까지 사용 연산 || && 전체 주석 ctrl + shift + / 줄맞추기 ctrl + i 변수사용까지 ex) int n =5; if(n%2==0) { 이런거? } 조건절 if, else, else if까지 활용해보기 if else문 학점, 년도별 띠 %12 줄맞추기 c와 다르게 검색 두자리수 짝수 홀수 나누는거 중복 if문 활용 몫 = quotient 약자 q 나머지 = remainder 약자 r 예제 풀어보기 int n = 36; int q = n/10; int r = n/2; if(q%2==0) { if(r%2==0) { System.out.println("우동"); }else { System.out.println("탕수육"); } }else { if(r%2==0) { System.out.println("짜장"); }else { System.out.println("짬뽕"); } } for문 진도 조건식 실행문 증감식 이순서 반복 조건식 숫자에 맞춰서 양식 안바뀌면 조건식에 맞춰 돌아감 for 적고 ctrl +space 내리고 tab del ctrl shift 옆으로 하면 다음 단어 구구단까지 예제 작성 for문 이해하기 Random ctrl space R은 대문자 new Random(). ctrl space nextint 랜덤 숫자 미만 100미만 랜덤값받아오기 public static void main(String[] args) { int a=0; for (int i = 0; i < 10; i++) { int rn = (new Random().nextInt(5)); System.out.println(rn); a = rn +a; } System.out.println(a); } | cs |
728x90
댓글