定义一个股票类Stock

定义一个股票类Stock,包括属性,股票代码(Sybol),股票名称(name),当前时间的股票价格(currenPrice),方法,显示股票信息。

还有第4题和第8题。
谢谢;
最新回答
南极星老奶奶

2024-04-11 12:20:36

定义股票的类:
在类模块中输入下列代码。

public symbol as string
public name as string
public currenprice as currency

public sub 显示股票信息()
msgbox(symbol & vbcrlf & name & currency)
end sub

打印图案
private sub print()
dim x as string
dim y as integer
dim z as integer
x=""
for i=0 to 2
y=2-i
z=1+i*2
for j=1 to y
x=x & " "
nex j
for j=1 to z
x=x & "#"
next j
x=x & vbcrlf
next i
msgbox(x)
end sub

没有看到第8题,第7题与股票的问题类似。
本例是用VB答复的,其他语言基本类似。

原来是要Java的:

public class Stock {

private String symbol;
private String name;
private double currentPrice;

public Stock(){

}

public void display(){
System.out.println("(" + this.symbol + ")" + this.name + ":" + this.currentPrice);
}

public String getSymbol() {
return symbol;
}

public void setSymbol(String symbol) {
this.symbol = symbol;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public double getCurrentPrice() {
return currentPrice;
}

public void setCurrentPrice(double currentPrice) {
this.currentPrice = currentPrice;
}
}
喵咕酱

2024-04-11 09:35:00

这都不会还编什么程序啊,自己去想吧