摘要: 1 constintGB=1024*1024*1024;//定义GB的计算常量2constintMB=1024*1024;//定义MB的计算常量3constintKB=1024;//定义KB的计算常量4publicstringByteConversionGBMBKB(Int64KSize)5{6if(KSize/GB>=1)//如果当前Byte的值大于等于1GB7return(Math.Round(KSize/(float)GB,2)).ToString()+"GB";//将其转换成GB8elseif(KSize/MB>=1)//如果当前Byte的值大于等于1M 阅读全文
posted @ 2013-05-18 15:35 yellowshorts 阅读(15268) 评论(0) 推荐(0) 编辑
摘要: 水仙花数的算法是一个三位数每一位数的立方相加等于该数本身1protectedvoidButton1_Click(objectsender,EventArgse) 2 {3inta=0,b=0,c=0;//定义变量4ListBox1.Items.Clear();//清空ListBox1控件5for(inti=100;i<=1000;i++)//遍历所有3位数6{7a=i/100;//获取3位数中的第一个数8Math.DivRem(i,100,outb);//获取3位数中的后两位数9b=b/10;//获取3位数中的第二位数10Math.DivRem(i,10,outc);//获取3位数中的第 阅读全文
posted @ 2013-05-18 15:33 yellowshorts 阅读(4626) 评论(0) 推荐(0) 编辑
摘要: 1protectedvoidButton1_Click(objectsender,EventArgse)2{3ListBox1.Items.Clear();//清空ListBox控件4intp=0,n=0,a=1,b=1;//定义变量5try6{7p=Convert.ToInt32(TextBox1.Text);//将字符型转换成数值型8}9catch//出现错误10{11Response.Write("<script>alert('请输入数值型数据');</script>");12TextBox1.Text="15&quo 阅读全文
posted @ 2013-05-18 15:28 yellowshorts 阅读(1773) 评论(0) 推荐(0) 编辑
摘要: 1if(TextBox1.Text.Length>8)2{3TextBox1.Text=TextBox1.Text.Substring(0,8);4}5else6{7intj=8-TextBox1.Text.Length;8for(inti=0;i<j;i++)9{10TextBox1.Text="0"+TextBox1.Text;11}12} 阅读全文
posted @ 2013-05-18 15:14 yellowshorts 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 1.aspx页面1<div>2<table>3<tr>4<td>5<asp:LabelID="Label1"runat="server"Text="字符串"Font-Size="10pt"></asp:Label>6</td>7<td>8<asp:TextBoxID="TextBox1"runat="server"></asp:TextBox>9</t 阅读全文
posted @ 2013-05-18 15:10 yellowshorts 阅读(204) 评论(0) 推荐(0) 编辑