//赋给三个人分数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
系统打电话界面:Intent intent = new Intent();//系统默认的action,用来打开默认的电话界面 intent.setAction(Intent.ACTION_CALL);//需要拨打的号码intent.setData(Uri.parse("tel:"+i)); call...
分类:
移动开发 时间:
2014-10-20 16:57:07
阅读次数:
209
//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
类型:一、数字1)Math.Ceiling()( 表示进位。));//只要小数点后有值,就向前进一位,取上限。string s = Console.ReadLine(); double d = double.parse(s); d = Math.Ceiling(d);d = Math.Floor(d...
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
////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
============问题描述============ 想只让本程序有声音,而不改变系统和其他的音量,代码如下,但是没一点反应啊mPlayer=MediaPlayer.create(RingAndVibrateService.this,Uri.parse(settings.getString("r...
分类:
移动开发 时间:
2014-10-18 23:29:42
阅读次数:
346
格式为: try { int i = int.Parse(Console.ReadLine());//容易发生错误的语句 Console.WriteLine("你输入的没有错误"); } catch (Exception e) { Console.WriteLine("你输入的格式有误!!!"...
分类:
其他好文 时间:
2014-10-18 18:08:56
阅读次数:
152
/* try { int i = int.Parse(Console.ReadLine()); Console.Write("没有错误的话会执行:"+i+",");//运行正常,执行这里 } catch (Exception e) //出现错误会跳到这里 { Console.Write("程序出现未...
分类:
其他好文 时间:
2014-10-17 18:08:43
阅读次数:
135