|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
import java.util.Scanner;
class Counter {
public int c;
Counter () {
c= 0;
}
public void reSets() {
c = 0;
}
public void getIncrement (int i) {
c+=i;
}
public void getDecrement (int i) {
c-=i;
}
public int getCounter() {
return c;
}
}
public class TestCounter {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String t = "I";
String f = "D";
System.out.println("Increment (I)) or Decrement (D))");
String choice = input.nextLine();
System.out.println("Enter a number");
Counter cc = new Counter();
if(choice.equals(t)) {
do {
cc.getIncrement(input.nextInt());
if (cc.getCounter() >= 40) {
cc.reSets();
System.out.println("The maxmum value is 40 (Reset to 0), continue!");
continue;
}
System.out.println("Counter :" + cc.getCounter());
} while (cc.getCounter() < 40);
} else {
do {
cc.getDecrement(input.nextInt());
if (cc.getCounter() <= -10) {
cc.reSets();
System.out.println("The minimun value is -10(ReSet to 0), continue");
continue;
}
System.out.println("Counter :" + cc.getCounter());
} while(cc.getCounter() > -10);
}
}
}
|
|