编写c#windows应用程序,由用户在numericupdown控件中输入一个十进制整数
编写c#windows应用程序,由用户在numericupdown控件中输入一个十进制整数,程序将其分别转换为二进制和八进制表示形式,并输出到两个textbox控件中(提...
编写c#windows应用程序,由用户在numericupdown控件中输入一个十进制整数,程序将其分别转换为二进制和八进制表示形式,并输出到两个textbox控件中(提示:对整数反复除2取余,各个余数组合起来就是其二进制表示,转换为八进制时采用类似的除8取余法)
展开
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
string sBinary = getBinary(numericUpDown1.Value);
string sOctal = getOctal(numericUpDown1.Value);
textBox1.Text = sBinary;
textBox2.Text = sOctal;
}
private string getBinary(decimal d)
{
if (d < 2) return d.ToString();
decimal d1 = d % 2;
string s = d1+"戚闷";
int d2 = (int)(d / 2);
s = getBinary(d2) + s;
return s;
}
private string getOctal(decimal d)
{
if (d <携巧 8) return d.ToString();
decimal d1 = d % 8;
string s = d1 + ""高隐弯;
int d2 = (int)(d / 8);
s = getBinary(d2) + s;
return s;
}
{
string sBinary = getBinary(numericUpDown1.Value);
string sOctal = getOctal(numericUpDown1.Value);
textBox1.Text = sBinary;
textBox2.Text = sOctal;
}
private string getBinary(decimal d)
{
if (d < 2) return d.ToString();
decimal d1 = d % 2;
string s = d1+"戚闷";
int d2 = (int)(d / 2);
s = getBinary(d2) + s;
return s;
}
private string getOctal(decimal d)
{
if (d <携巧 8) return d.ToString();
decimal d1 = d % 8;
string s = d1 + ""高隐弯;
int d2 = (int)(d / 8);
s = getBinary(d2) + s;
return s;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询