-문제 > 영문 대문자를 소문자로 변경하는 프로그램 package com.dream.controls; import java.util.Scanner; //WhileEx02 클래스에 Scanner 클래스의 모든 소스코드가 포함된다. public class WhileEx02 { public static void main(String[] args) { Scanner in = new Scanner(System.in); //입력 스트림 객체 생성 String str = ""; char ch = 0; System.out.println("영문 대문자를 소문자로 변경하는 프로그램"); while(true) { //무한 반복문 System.out.print("영문 대문자 입력: "); str = in.nextLine();..