码迷,mamicode.com
首页 >  
搜索关键字:system center    ( 58910个结果
浅谈OSI网络模型
作者:cinge 出处:http://www.cnblogs.com/cinge 不足请指正,谢谢。摘抄于网上的基本知识,再略加自己的理解,以方便理解和复习。OSI模型,即开放式通信系统互联参考模型(Open System Interconnection,OSI/RM,Open Systems In...
分类:其他好文   时间:2015-02-25 15:34:37    阅读次数:191
acm2014
/**  * 评委会打分  * 去掉一个最高分和一个最低分,计算平均得分  */ import java.util.*; public class acm2014 { public static void main(String[] args) { Scanner in = new Scanner(System.in); while (in.hasNextInt()) { ...
分类:其他好文   时间:2015-02-25 14:15:04    阅读次数:120
C#编写以管理员身份运行的程序
using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace MyWebBrowser{ static class Program { ...
分类:Windows程序   时间:2015-02-25 14:14:50    阅读次数:173
導出Excel方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.OleDb;using System.Windows.Forms;using System.Data...
分类:其他好文   时间:2015-02-25 12:49:04    阅读次数:148
C++与C#中this关键字的区别
C#中隐式接口与显示接口   隐式接口: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections;   names...
分类:编程语言   时间:2015-02-25 09:10:45    阅读次数:249
linq多表查询
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Otsuka.Application.Dal;using Otsuka.Application.Bll.Common;usi...
分类:其他好文   时间:2015-02-25 06:57:19    阅读次数:298
UVa 1648 (推公式) Business Center
题意:有一种奇怪的电梯,每次只能向上走u个楼层或者向下走d个楼层现在有m个这种电梯,求恰好n次能够到达的最小楼层数(必须是正数),最开始默认位于第0层。分析:假设电梯向上走x次,则向下走n-x次,则所到达的楼层为xu - (n-x)d ≥ 0(u+d)x ≥ nd,x的最小值为换句话说,如果nd %...
分类:其他好文   时间:2015-02-25 06:57:12    阅读次数:257
贪心算法之搬桌子问题
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SeqListSort{ /// /// /// lihonlin /// //...
分类:编程语言   时间:2015-02-25 00:39:26    阅读次数:188
如鹏网JAVA培训笔记2(晓伟整理)
输入输出:我们使用System.out.println(“abc”);作用:向控制台输入东西。Scanersc=newScanner(System.in);//从输入流中去读取intage=sc.nextInt();//等待接受用户输入的一个整型Stringname=sc.nextLine();//阻塞函数,等待用户输入一行字符串基本数据类型赋值:基本数据..
分类:编程语言   时间:2015-02-24 23:35:59    阅读次数:334
如鹏网JAVA培训笔记1(晓伟整理)
JDK(JavaDevelopmetKit)JRE(JavaRunTimeEnvironment)的区别:JRE只有运行JAVA程序的环境,没有开发相关的工具;JDK=JRE+开发相关的工具。用记事本运行java程序出现的问题://可以执行的程序classhello{publicstaticvoidmain(String[]args){System.out.println("HelloWorld!");}}..
分类:编程语言   时间:2015-02-24 23:33:31    阅读次数:341
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!