import java.io.*;
public class test07{
public static void main(String[] args)throws IOException
{
BufferedReader input = new BufferedReader
(new InputStreamReader(System.in));

int sales,price;
System.out.print("請輸入下線人員 :");
sales = Integer.parseInt(input.readLine());

System.out.print("請輸入此sales業積 :");
price = Integer.parseInt(input.readLine());

if((sales>=100)&&(price>=1000000))

System.out.print("這位是頂級Sales");

else if((sales>=100)||(price>=1000000))

System.out.print("這位是高級Sales");

else

System.out.print("這位是普通Sales");

}
}
arrow
arrow
    全站熱搜

    Neo Chao 發表在 痞客邦 留言(0) 人氣()