数字のパリティを判断するAsp.Net C#

8382 ワード

1.入力は数字
2.小数パリティなし
3.パリティ判定n%2=0偶数逆に奇数
初学だから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<str.Length;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.     }