网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

判断数字奇偶性 Asp.NetC#

1.输入是数字

专注于为中小企业提供网站设计、成都做网站服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业商丘免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了上千余家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。

2.小数无奇偶性

3.奇偶性判断    n%2==0  偶数  反之为奇数

因为是初学Asp.Net,头文件using老是没写全。其实我还不知道那些要写,那些不用写上。  必须尽快学会

 

 

  1. using System; 
  2. using System.Text; 
  3. using System.Collections.Generic; 
  4. using System.Linq; 
  5. using System.Web; 
  6. using System.Web.UI; 
  7. using System.Web.UI.WebControls; 
  8.  
  9. namespace WebApplication2 
  10.     public partial class _Default : System.Web.UI.Page 
  11.     { 
  12.         protected void Page_Load(object sender, EventArgs e) 
  13.         { 
  14.             
  15.         } 
  16.  
  17.  
  18.   
  19.      
  20.         private static int IsNumeric(string str) //接收一个string类型的参数,保存到str里 
  21.         { 
  22.           char[] a=str.ToCharArray();; 
  23.            int  i; 
  24.             if (str == null || str.Length == 0)  
  25.                 //验证这个参数是否为空 
  26.                 return 0;                           //是,就返回False 
  27.             for(i=0;i
  28.             { 
  29.              
  30.                 if (a[i]=='.')                          //判断是否为 0.1 
  31.                 { 
  32.                     
  33.                     return 2;                     //不是,就返回False 
  34.                 } 
  35.                 
  36.             } 
  37.        
  38.              
  39.           
  40.             ASCIIEncoding ascii = new ASCIIEncoding();//new ASCIIEncoding 的实例 
  41.              byte[] bytestr = ascii.GetBytes(str);         //把string类型的参数保存到数组里 
  42.  
  43.              foreach (byte c in bytestr)                   //遍历这个数组里的内容 
  44.             { 
  45.                 if (c < 48 || c > 57)                          //判断是否为数字 
  46.                 { 
  47.                     return 0;                              //不是,就返回False 
  48.                 } 
  49.                  
  50.             } 
  51.             return 1;                                        //是,就返回True 
  52.         } 
  53.  
  54.        
  55.  
  56.         protected void TextBox1_TextChanged(object sender, EventArgs e) 
  57.         { 
  58.             int i = IsNumeric(TextBox1.Text); 
  59.             TextBox2.Text = i.ToString(); 
  60.             if (i == 1) 
  61.             { 
  62.                 int a = Int16.Parse(TextBox1.Text); 
  63.  
  64.                 if (a % 2 == 0) { TextBox2.Text = "偶数"; } 
  65.                 else if (a % 2 != 0) { TextBox2.Text = "奇数"; } 
  66.             } 
  67.             else if (i == 0) 
  68.                 TextBox2.Text = "输入错误!"; 
  69.             else if (i == 2) 
  70.                 TextBox2.Text = "小数无奇偶性"; 
  71.  
  72.             
  73.         } 
  74.  
  75.       
  76.     } 

文章标题:判断数字奇偶性 Asp.NetC#
文章出自:http://bjjierui.cn/article/pcojdp.html

其他资讯