解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int x=sc.nextInt();
int y=0;
if(x<1) {
y=x;
}
if(x>=1&&x<10) {
y=2*x-1;
}
if(x>=10) {
y=3*x-11;
}
System.out.println(y);
}
}
0.0分
0 人评分