资源描述:
《高级程序设计C#第八章》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、高级程序设计授课教师:祁长兴C#第八章:常用类2021/10/41常用类Math类1字符串类型2窗体和控件类32021/10/42Math静态字段PIE静态方法整数运算初等函数三角函数Abs():求绝对值Ceiling()求大于等于指定数值的最小整数Floor()求小于或等于指定数值的最大整数Round()对数值进行四舍五入Exp():求e的指数幂Pow()指数函数Log()对数函数Lg10()求以10为底的对数Sqrt()求平方根Sin():求正弦函数Cos()求余弦函数Tan()求正切函数。。。。。。2021/
2、10/43staticvoidMain(string[]args){doublea=-1.2;intk=-1,d;doubleb,c;inti;b=Math.Abs(a);Console.WriteLine("Abs(a)={0}",b);d=Math.Abs(k);Console.WriteLine("Abs(k)={0}",d);c=Math.Ceiling(1.2);Console.WriteLine("Ceiling(1.2)={0}",c);c=Math.Floor(1.2);Console.WriteL
3、ine("Floor(1.2)={0}",c);c=Math.Round(1.5);Console.WriteLine("Round(1.5)={0}",c);c=Math.Round(1.2);Console.WriteLine("Round(1.2)={0}",c);b=Math.Exp(2.1);Console.WriteLine("Exp(2.1)={0}",b);b=Math.Pow(2,3);Console.WriteLine("Pow(2,3)={0}",b);b=Math.Log(10);Conso
4、le.WriteLine("Log(10)={0}",b);b=Math.Log10(10);Console.WriteLine("Log10(10)={0}",b);b=Math.Sqrt(9);Console.WriteLine("Sqrt(9)={0}",b);Console.ReadLine();}2021/10/44MathDemoP8-12021/10/45string构造函数与赋值1。直接赋值:strings1=“software”2。构造函数赋值:string(char,int)string(cha
5、r[])string(char,int,int)2021/10/46staticvoidMain(string[]args){strings1="helloworld!";Console.WriteLine("s1={0}",s1);strings2=newstring('a',5);Console.WriteLine("s2={0}",s2);char[]s3=newchar[]{'m','i','c','r','o','s','o','f','t'};strings4=newstring(s3);strings
6、5=newstring(s3,1,4);Console.WriteLine("s3={0}",s3);Console.WriteLine("s4={0}",s4);Console.WriteLine("s5={0}",s5);Console.ReadLine();}2021/10/47String获取字符stringchar:索引函数stringchar[]:char[]ToChayArray()char[]ToChayArray(intint)//起始位置,复制的长度CopyTo(int,char[],int
7、,int)//起始位置,目标数组,,指定数组起始位置,复制的长度2021/10/48staticvoidMain(string[]args){strings1="Microsoft!";char[]chs1=s1.ToCharArray();char[]chs2=s1.ToCharArray(5,4);Console.WriteLine(newstring(chs1));Console.WriteLine(newstring(chs2));char[]chs=newchar[20];"Microsoft".Copy
8、To(0,chs,0,9);"Windows2003".CopyTo(0,chs,10,7);Console.WriteLine(newstring(chs));Console.ReadLine();}2021/10/49字符查找intIndexOf(char)intIndexOf(char,int)intIndexOf(char,int,int)intLa