c語言中16進制轉換為10進制?在C#編程中,10進制轉換為2進制、8進制和16進制源代碼:,今天小編就來說說關于c語言中16進制轉換為10進制?下面更多詳細答案一起來看看吧!
在C#編程中,10進制轉換為2進制、8進制和16進制源代碼:
程序運行界面
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
long sz;
string str = textBox1.Text;
if (long.TryParse(str, out sz))
{
switch(comboBox2.SelectedIndex)
{
case 0:
textBox2.Text = sz.ToString();
break;
case 1:
textBox2.Text = Convert.ToString(sz, 2);
break;
case 2:
textBox2.Text = Convert.ToString(sz, 8);
break;
case 3:
textBox2.Text = Convert.ToString(sz, 16);
break;
}
}
else
{
MessageBox.Show("請重新輸入正确的數字", "提示");
}
}
}
}
學會使用Convert.ToString()方法來将10進制數轉換為2進制、8進制和16進制。同時學會使用TryParse()數字傳遞方法,以及switch...case語句的用法。
喜歡的請關注、收藏!
更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!