1.輸入是數(shù)字
專注于為中小企業(yè)提供網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)商丘免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上千余家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
2.小數(shù)無奇偶性
3.奇偶性判斷 n%2==0 偶數(shù) 反之為奇數(shù)
因?yàn)槭浅鯇W(xué)Asp.Net,頭文件using老是沒寫全。其實(shí)我還不知道那些要寫,那些不用寫上。 必須盡快學(xué)會
- using System;
- using System.Text;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebApplication2
- {
- public partial class _Default : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- }
- private static int IsNumeric(string str) //接收一個(gè)string類型的參數(shù),保存到str里
- {
- char[] a=str.ToCharArray();;
- int i;
- if (str == null || str.Length == 0)
- //驗(yàn)證這個(gè)參數(shù)是否為空
- return 0; //是,就返回False
- for(i=0;i<str.Length;i++)
- {
- if (a[i]=='.') //判斷是否為 0.1
- {
- return 2; //不是,就返回False
- }
- }
- ASCIIEncoding ascii = new ASCIIEncoding();//new ASCIIEncoding 的實(shí)例
- byte[] bytestr = ascii.GetBytes(str); //把string類型的參數(shù)保存到數(shù)組里
- foreach (byte c in bytestr) //遍歷這個(gè)數(shù)組里的內(nèi)容
- {
- if (c < 48 || c > 57) //判斷是否為數(shù)字
- {
- return 0; //不是,就返回False
- }
- }
- return 1; //是,就返回True
- }
- protected void TextBox1_TextChanged(object sender, EventArgs e)
- {
- int i = IsNumeric(TextBox1.Text);
- TextBox2.Text = i.ToString();
- if (i == 1)
- {
- int a = Int16.Parse(TextBox1.Text);
- if (a % 2 == 0) { TextBox2.Text = "偶數(shù)"; }
- else if (a % 2 != 0) { TextBox2.Text = "奇數(shù)"; }
- }
- else if (i == 0)
- TextBox2.Text = "輸入錯(cuò)誤!";
- else if (i == 2)
- TextBox2.Text = "小數(shù)無奇偶性";
- }
- }
- }
網(wǎng)頁題目:判斷數(shù)字奇偶性 Asp.NetC#
網(wǎng)站地址:http://www.rwnh.cn/article18/pcojdp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、微信公眾號、品牌網(wǎng)站制作、搜索引擎優(yōu)化、手機(jī)網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)