0

我基本上是在尝试在 Visual Studio 2008 中编写一个基本的转换器,我有 3 个文本框,两个从用户那里获取输入,一个提供结果输出。

例如:

文本框 1:1.0000,
文本框 2:1.12,
文本框 1 值 + 文本框 2 值

我应该在文本框中显示 3:1.00001.12

4

3 回答 3

0

这里是:

private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
                 textBox3->Text = Convert::ToString(float::Parse(textBox1->Text) + float::Parse(textBox1->Text));
             }

好好享受。

于 2012-12-25T07:49:18.547 回答
0

我不是专家,但似乎你需要一个 concat。文本框必须有字符串而不是浮动,所以无论你在其中输入什么都是字符串,你只需要在那之后使用字符串 concat。

于 2012-12-25T06:46:12.417 回答
0
float flowcal1 = 1.0001
float flowcal2 = 1.12

flow.Format(_T("%.4f%.2f"),flowcal1,flowcal2);

flow = 1.00011.12
于 2013-02-28T12:34:36.080 回答