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