上市公司买进+业绩承诺+。。。 后G时代的机会之二

今天大盘继续走势不漂亮。但是,0989却在深圳市场涨幅前列。

原来,0989今天发布了公司回购流通股的公告。大意是:拟在12个月内,动用1。6亿资金,以不高于5。3元/股的价格,回购1800-3600万股流通股。

G九芝堂是医药行业的老字号,总股本仅仅2。6亿,第一大股东在股改后的持股总数由1。2亿降低到了一个亿、占38%(原来是46%)。如果它回购到3600万注销,总股本将降低到2。258亿,第一大股东的持股比例将提高到44%以上,被收购的可能性大大降低。

回购/缩股有利于提高上市公司的资金使用效率,提高每股的收益大约7--14%。

同时,由于送股较少,在加送现金的同时,0989承诺了06/07年的净利润复合增长率不低于30%;还有当年可分红利润60%的分红承诺。

对于G九芝堂的基本面,我说不透。只提供上述信息,供各位参考。

以下是Java中的商品买进售出代码示例: ```java import java.util.Scanner; public class Product { private String name; private int quantity; private double costPrice; private double sellingPrice; public Product(String name, int quantity, double costPrice, double sellingPrice) { this.name = name; this.quantity = quantity; this.costPrice = costPrice; this.sellingPrice = sellingPrice; } public void buy(int quantity, double costPrice) { this.quantity += quantity; this.costPrice = ((this.costPrice * this.quantity) + (costPrice * quantity)) / (this.quantity + quantity); } public void sell(int quantity) { if (this.quantity >= quantity) { this.quantity -= quantity; System.out.println("Total Selling Price: " + (quantity * sellingPrice)); } else { System.out.println("Insufficient Quantity!"); } } public void printDetails() { System.out.println("Product Name: " + name); System.out.println("Available Quantity: " + quantity); System.out.println("Cost Price: " + costPrice); System.out.println("Selling Price: " + sellingPrice); } public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter Product Name: "); String name = scanner.nextLine(); System.out.print("Enter Quantity: "); int quantity = scanner.nextInt(); System.out.print("Enter Cost Price: "); double costPrice = scanner.nextDouble(); System.out.print("Enter Selling Price: "); double sellingPrice = scanner.nextDouble(); Product product = new Product(name, quantity, costPrice, sellingPrice); product.printDetails(); System.out.print("Enter Quantity to Buy: "); int buyQuantity = scanner.nextInt(); System.out.print("Enter Cost Price: "); double buyCostPrice = scanner.nextDouble(); product.buy(buyQuantity, buyCostPrice); product.printDetails(); System.out.print("Enter Quantity to Sell: "); int sellQuantity = scanner.nextInt(); product.sell(sellQuantity); product.printDetails(); scanner.close(); } } ``` 这个示例程序创建了一个商品类,其中包含商品的名称、可用数量、成本价格和销售价格。它还包括购买和销售商品的方法,并在控制台上打印商品的详细信息。程序通过用户输入来获取商品的详细信息,然后通过调用相应的方法来模拟购买和销售商品的过程。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值