首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴小小袁的代码贴全部
double price, totalPrice, discount, discountedPrice;
            int quantity;
            const double d = 0.85f;
            price = double.Parse(textBox2.Text);
            quantity = int.Parse(textBox3.Text);
            totalPrice = price * quantity;
            textBox4.Text = totalPrice.ToString();
阅读全部 | 2013年3月13日 14:39
1
小小袁