码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
wpf 数据绑定 联系
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.ComponentModel;变量:namespace 联系{ pub...
分类:Windows程序   时间:2015-06-29 11:35:20    阅读次数:151
一组RS485设备操作命令
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ZNJM2.Win{ public class CommandBase { public ...
分类:其他好文   时间:2015-06-29 11:31:08    阅读次数:119
如何让HttpWebRequest使用指定网络接口传输数据
using System;using System.Net;class Program{ public static void Main () { foreach (var ip in Dns.GetHostAddresses (Dns.GetHostName ())) ...
分类:Web程序   时间:2015-06-29 11:30:55    阅读次数:151
第十六周阅读程序:异常处理和命名空间
(1) #include using namespace std; int a[10]= {1,2, 3, 4, 5, 6, 7, 8, 9, 10}; int fun( int i); int main() { int i ,s=0; for( i=0; i<=10; i++) { try { s=s+fun(i...
分类:其他好文   时间:2015-06-29 10:20:03    阅读次数:134
Problem A : Quoit Design
#include #include #include #include #include using namespace std; struct point{     double x,y;     point(double xx = 0,double yy = 0){         x = xx;         y = yy;     }     void input...
分类:其他好文   时间:2015-06-29 10:16:00    阅读次数:98
C#导出EXCEL(DataTable导出EXCEL)
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.IO; using System.Web; using Microsoft.Office.Intero...
分类:Windows程序   时间:2015-06-29 09:49:52    阅读次数:164
STM32 CRC-32 Calculator Unit
AN4187 - Using the CRC peripheral in the STM32 familyAt start up, the algorithm sets CRC to the Initial_Crc XOR with the Input_Data.Once CRC MSB is eq...
分类:其他好文   时间:2015-06-29 06:11:26    阅读次数:178
UVA 550 Multiplying by Rotation (简单递推)
题意:有些数字是可以这样的:abcd*k=dabc,例如179487 * 4 = 717948,仅仅将尾数7移动到前面,其他都不用改变位置及大小。这里会给出3个数字b、d、k,分别代表b进制、尾数、第2个乘数。既然是尾数,必有d 2 #define LL long long 3 using name...
分类:其他好文   时间:2015-06-29 06:11:01    阅读次数:95
oracle安装问题 Could notexecute auto check for display colors using command
[oracle@localhostdatabase]$./runInstallerStartingOracleUniversalInstaller...CheckingTempspace:mustbegreaterthan120MB.Actual38232MBPassedCheckingswapspace:mustbegreaterthan150MB.Actual3999MBPassedCheckingmonitor:mustbeconfiguredtodisplayatleast256colors>&..
分类:数据库   时间:2015-06-29 00:44:51    阅读次数:173
CSU - 1556 Jerry's trouble(快速幂取模)
【题目链接】:click here~~【题目大意】:计算x1^m+x2^m+..xn^m(1 1 ) 【解题思路】:  快速幂取模 代码: #include #define LL long long using namespace std; const LL mod=(LL)1e9+7; LL pow_mod(LL a,LL p,LL n) { if(p==0) return...
分类:其他好文   时间:2015-06-29 00:37:24    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!