자바 컴파일 오류 수정 부탁드립니다.
뱐헀어
과제 하다가 잘 안 풀려서 자바 잘 아시는 분께 조금 도움을 받았습니다. ( 사실은 아주 많이 -.- )
프로그래밍해서 컴파일하려고 하니까 자꾸 오류가 나네요.
사실 기본이 안 되어 있으니까...오류가 나도 어떻게 고쳐야 할 지 잘 모르겠습니다.
도움 좀 부탁드립니다.
질문1 ) 문제 : 다음과 같이 출력하는 프로그램을 자바로 구현하라.
조건 : 반복문은 단 한개만 사용
제출 형식 : 보고서와 소스파일
- 보고서 : 프로그램의 구현 아이디어와, 실행 결과화면을 캡쳐해서 제출
- 소스파일 : 1.java- 출력 내용 :
1 2 3 4 5
16 17 18 19 6
15 24 25 20 7
14 23 22 21 8
13 12 11 10 9
작성한 소스 파일
public class 1{int max=5; //
int array[][];//
int start,limit; //
int count=1;//
int x=0;//
int y=-1; //
int add=1;//
public Test(){//
arrayTest();
}
public void arrayTest(){
if(array==null){//
array=new int[max][max];
limit=max;
}
for(start=0;startlimit*2-1;start++){ //
if(startlimit){
y+=add;
}else{
x+=add;
}
array[x][y]=count++; //
if(start==(limit-1)*2){ //
start=-1;//
limit--; //
if(limit==0){//
break;
}
add*=-1; //
}
}
printArray();
}public void printArray(){ //
for(int i=0;imax;i++){
for(int j=0;jmax;j++){
System.out.print(array[i][j]+\t);
}
System.out.println();
}
}
public static void main(String[] args){
new Test();
}
}
어디가 잘못되었는지 지도 부탁드립니다.
질문2) 파일(text 형식) 오픈 후 해당 파일의 내용을 출력하는 프로그램을 구현하라.
- 파일 이름은 사용자에게 입력받도록 한다.
- 해당 파일이 존재하지 않을 경우 이를 사용자에게 알리고 파일 이름을 다시 입력받도록 하라.text 파일의 이름 : sample.txt
작성한 소스
BufferedReader br; //
String fileName;
public void inputFileName(){
if(br==null){
br = new BufferedReader(new InputStreamReader(System.in)); //
}
try{
while(true){
System.out.println(sample);
fileName=br.readLine();
if(fileNameCheck(fileName)){//
openFile(fileName); //
}else{
System.out.println(not Found File Please retry Input FileName...+_+);
}
}
}catch(Exception e){
}
}
public boolean fileNameCheck(String str){
boolean flag=false;
try{
InputStream is = getClass().getResourceAsStream(/+str+.txt);
if(is==null){
flag=false;
}else{
flag=true;
}
}catch(Exception e){}
return flag;
}
public void openFile(String str){
InputStream is = getClass().getResourceAsStream(/sample.txt); //
byte buf[]=new byte[is.available()];//
is.read(buf);//
codeList= new String(buf);//
System.out.println(codeList);//
역시 어디가 잘못되었는지 지도 부탁드립니다.
( 이런 걸 하고 있지만...정말 초보라고 생각하시고 쉽게 설명 부탁드립니다. ㅠㅠ )