本文介绍了如何从6位数字中取出最后两个数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hi
在我的项目中,我随机显示支票号码
像random.next(100000,999999)一样会随机提供一些值,例如234567
在那我应该选择最后两位数字并设置支票号码范围为1到10
(234568至234578)之类的人可以帮助我


在此先感谢
pallavi

hi
in my project i am displaying cheque number randomly
like random.next(100000,999999) it will give some value randomly like 234567
in that i should select last two digits and set cheque number range from 1 to 10
like (234568 to 234578) can any one help me for how to do this


thanks in advance
pallavi

推荐答案

int lastTwoDigits = number % 100;


int a = 123456789
int b = a % 100
Console.WriteLine("b: ",b);



输出:
b = 89



Output :
b = 89



这篇关于如何从6位数字中取出最后两个数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 07:51