카페검색 본문
카페글 본문
-
2024 텀1방학 수업 안내 2024.03.29해당카페글 미리보기
6~중2 과정 영어수학 수학 어휘 정리 - 기초 연산 및 개념에 필요한 영어 어휘 연습을 집중적으로 합니다. 수학 개념 정리 - Integers, Decimals, Fractions, Percentage, Algebra, Geometry등의 기초 개념 영어로 정리합니다. 사고력 수학 - 학생들이...
-
24.03.20 과제 2024.03.20해당카페글 미리보기
i++) { vos.add((int)(Math.random()*100+1-10)+10); } // 원본 System.out.println("1. 10개의 난수 : " +vos); Integer[] integers = vos.toArray(new Integer[0]); // 오름차순 정렬 Arrays.sort(integers); String res = ""; for(int i=0; i vos = new...
-
How to Add Negative Integers 음의 정수 더하기 2010.09.03해당카페글 미리보기
with a kickoff. 2. Informal To begin; start: kicked off the promotional tour with a press conference. Review of Integers But before we start working to break that calculator habit, let’s briefly review what we talked about last time...
-
C# ListView Sorting 2023.12.18해당카페글 미리보기
bool num1 = int.TryParse(xStr, out xV) ; bool num2 = int.TryParse(yStr, out yV) ; if(num1 && num2) // If both are integers { if(Inc) return (xV>yV) ? 1 : -1; else return (xV>yV) ? -1 : 1 ; } else // string compare { if(Inc) return string...
-
# Formatting Integers and Strings.py 2012.12.16해당카페글 미리보기
# Formatting Integers and Strings.py hours = 40 print ('I worked %d hours this week.' % hours) dogs = 2 cats = 3 print ('We have %d dogs and %d cats. ' % (dogs, cats)) name = 'Ringo' print ('Hello %s. Good to see you! ' % name) day...