반응형
public class Ex5_1_1 {
public static void main(String[] args) {
int su[]={3,-5,7,9,-12,0,-99,5,89,3};
int max=su.length,x,i;
boolean y=false;
x=Integer.parseInt(args[0]);
for(i=0;i<max;i++){
if(x == su[i]) y=true;
else y=false;
}
if (y == true)System.out.println(x+"은/는 원소입니다.");
else System.out.println(x+"은/는 원소가 아닙니다.");
}
}
public static void main(String[] args) {
int su[]={3,-5,7,9,-12,0,-99,5,89,3};
int max=su.length,x,i;
boolean y=false;
x=Integer.parseInt(args[0]);
for(i=0;i<max;i++){
if(x == su[i]) y=true;
else y=false;
}
if (y == true)System.out.println(x+"은/는 원소입니다.");
else System.out.println(x+"은/는 원소가 아닙니다.");
}
}
반응형
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."