📄 number001.java
字号:
public class Number001
{
static int number1;
static double price=3.99;
static String s="Happy Snowman";
static int max1;
static int sell1;
static int thismax(int b)
{
max1=b;
return max1;
}
static void getNumber(int b)
{
number1=b;
}
static void changeNumber(int a)
{
number1=number1-a;
sell1=max1-number1;
}
static String thisorder()
{
return s;
}
static double thisPrice()
{
return price;
}
static int showsell()
{
return sell1;
}
static int showmax()
{
return max1;
}
static int thisNumber()
{
return number1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -