输入一个4位数的正整数,用C#编写程序,输出这个数的千位、百位、十位和个位,怎么写?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入一个4位数的正整数,用C#编写程序,输出这个数的千位、百位、十位和个位,怎么写?相关的知识,希望对你有一定的参考价值。
参考技术A static void Main(string[] args)Console.WriteLine("请输入一个4位的正整数:");
string input = Console.ReadLine();
while (input.Length != 4)
Console.WriteLine("请输入一个4位的正整数:");
input = Console.ReadLine();
Console.WriteLine("你输入的数是0,它的千位是1,百位是2,十位是3,个位是4", input, input[0], input[1], input[2], input[3]);
Console.ReadKey();
参考技术B int Mat = Int.Parse(TextBox1.Text.Trim());int xxxx = Mat / 1000; //例如 4321 / 1000 = 4
int xxx = Mat % 1000 / 100; 例如 4321 % 1000 = 321 321 / 100 = 3
int xx = Mat % 100 / 10; 例如 4321 % 100 = 21 21 / 10 = 2
int x = Mat % 10; 例如 4321 % 10 = 1
最多可输入10位数
Private Sub Command1_Click()
Dim num As Long
num = Val(InputBox("请输入一个整数"))
Print "千位数=" & num \\ 1000 Mod 10
Print "百位数=" & num \\ 100 Mod 10
Print "十位数=" & num \\ 10 Mod 10
Print "个位数=" & num Mod 10
End Sub
用C#语言编写以下代码5. 输入一个整数,判定它为几位数。例如,99是2位数,-100是3位数
谢谢各位大神,快考试了
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication5
class Program
static void Main(string[] args)
Console.Write("请输入一个整数:");
int i = 0;
if (int.TryParse(Console.ReadLine(), out i))
i = Math.Abs(i);
Console.WriteLine("您输入的数字为长度为" + i.ToString().Length);
else
Console.WriteLine("输入的不是整数");
Console.ReadKey();
参考技术A using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
public class Program
public static void Main(string[] args)
Console.Write("请输入一个整数:");
string s = Convert.ToString(Console.ReadLine());
Console.WriteLine(s.Length);
Console.ReadLine();
参考技术B while(n/10!=0)
m++;
n=n/10;
return m;
以上是关于输入一个4位数的正整数,用C#编写程序,输出这个数的千位、百位、十位和个位,怎么写?的主要内容,如果未能解决你的问题,请参考以下文章
编写程序,输入一个不多于5位的正整数,要求:(1)输出它是几位数; (2)分别输出每一位数字?
3. 编一程序,从键盘输入一个三位数,求出其逆序数并输出,例如输入123,输出321。