码迷,mamicode.com
首页 >  
搜索关键字:parse    ( 5240个结果
2014年10月21日------数组,集合
//赋给三个人分数Console.WriteLine("输入人数");int n = int.Parse(Console.ReadLine()); double[,] shuzu = new double[n, 3];for (int i = 0; i < n; i++) { ...
分类:编程语言   时间:2014-10-21 17:26:06    阅读次数:255
Android学习笔记七:调用打电话、发短信等
系统打电话界面:Intent intent = new Intent();//系统默认的action,用来打开默认的电话界面 intent.setAction(Intent.ACTION_CALL);//需要拨打的号码intent.setData(Uri.parse("tel:"+i)); call...
分类:移动开发   时间:2014-10-20 16:57:07    阅读次数:209
类型(Math 、Datetime )
//double d = double.Parse(Console.ReadLine()); //d = Math.PI;//圆周率 //d = Math.Sqrt(d);//开方 //d = Math.Ceiling(d);//当为整数取整,当小数点后大于0,取上限加1进位取整. //d = M....
分类:其他好文   时间:2014-10-20 14:59:09    阅读次数:273
类型(二)
double d = double.Parse(Console.ReadLine()); // d = Math.PI;//圆周率 // d = Math.Sqrt(d);//开方 // d = Math.Ceiling(d);//只要小数...
分类:其他好文   时间:2014-10-19 23:09:58    阅读次数:321
10-19C#基础--第四部分类型(2)重点
类型:一、数字1)Math.Ceiling()( 表示进位。));//只要小数点后有值,就向前进一位,取上限。string s = Console.ReadLine(); double d = double.parse(s); d = Math.Ceiling(d);d = Math.Floor(d...
分类:Windows程序   时间:2014-10-19 23:04:07    阅读次数:383
数据类型(二)
double d = double.Parse(Console.ReadLine());d = Math.PI; //圆周率d = Math.Sqrt(d); //开方d = Math.Ceiling(d); //当为整数时取整,当小数点后大于0,取上限加1取整d = Math.Floor(d); ...
分类:其他好文   时间:2014-10-19 22:40:44    阅读次数:320
类型--2014年10月19日
////Console.WriteLine();////ints=int.Parse(Console.ReadLine());//doubled=double.Parse(Console.ReadLine());////d=Math.Sqrt(d);//平方根,即25时,输出为5,,,输入4,0时输...
分类:其他好文   时间:2014-10-19 16:49:18    阅读次数:216
Android的MediaPlayer的setVolume()怎么无效啊
============问题描述============ 想只让本程序有声音,而不改变系统和其他的音量,代码如下,但是没一点反应啊mPlayer=MediaPlayer.create(RingAndVibrateService.this,Uri.parse(settings.getString("r...
分类:移动开发   时间:2014-10-18 23:29:42    阅读次数:346
try catch异常捕获
格式为: try { int i = int.Parse(Console.ReadLine());//容易发生错误的语句 Console.WriteLine("你输入的没有错误"); } catch (Exception e) { Console.WriteLine("你输入的格式有误!!!"...
分类:其他好文   时间:2014-10-18 18:08:56    阅读次数:152
Try,尝试?
/* try { int i = int.Parse(Console.ReadLine()); Console.Write("没有错误的话会执行:"+i+",");//运行正常,执行这里 } catch (Exception e) //出现错误会跳到这里 { Console.Write("程序出现未...
分类:其他好文   时间:2014-10-17 18:08:43    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!