수업소개
컴퓨터는 '데이터'를 '처리'하는 기계입니다. 데이터마다 처리방법이 다릅니다. 그래서 데이터의 분류를 아는것이 중요합니다. 여기서는 '데이터'와 '처리'의 의미에 대해서 알아봅니다.
Editor does not contain a main type 라는 에러가 발생하면 src 디렉토리로 소스코드 위치를 변경한 후에 실행시켜보세요. 보다 자세한 내용은 다음 수업을 참고해주세요. https://www.youtube.com/watch?v=Wtb755nwIwo
강의1
강의2
소스코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | public class Datatype{ public static void main(String[] args) { System.out.println( 6 ); // Number System.out.println( "six" ); // String System.out.println( "6" ); // String 6 System.out.println( 6 + 6 ); // 12 System.out.println( "6" + "6" ); // 66 System.out.println( 6 * 6 ); // 36 // System.out.println("6"*"6"); System.out.println( "1111" .length()); // 4 // System.out.println(1111.length()); System.out.println( "Hello World" ); //String 문자열 System.out.println( 'H' ); //Char 문자 System.out.println( "H" ); } } |