using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.ComponentModel;变量:namespace 联系{ pub...
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
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
#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
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.IO; using System.Web; using Microsoft.Office.Intero...
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
题意:有些数字是可以这样的: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@localhostdatabase]$./runInstallerStartingOracleUniversalInstaller...CheckingTempspace:mustbegreaterthan120MB.Actual38232MBPassedCheckingswapspace:mustbegreaterthan150MB.Actual3999MBPassedCheckingmonitor:mustbeconfiguredtodisplayatleast256colors>&..
分类:
数据库 时间:
2015-06-29 00:44:51
阅读次数:
173
【题目链接】: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