码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
AddParent
using UnityEngine;using UnityEditor;using System.Collections; public class AddParent : ScriptableObject{ [MenuItem ("GameObject/+Add Parent")] s...
分类:其他好文   时间:2014-06-07 00:36:56    阅读次数:202
AddChild
using UnityEngine;using UnityEngine;using UnityEditor;using System.Collections; public class AddChild : ScriptableObject{ [MenuItem ("GameObject/...
分类:其他好文   时间:2014-06-07 00:16:30    阅读次数:247
实例365(7)---------使用DateAdd方法向指定日期添加一段时间间隔,使用TimeSpan对象获取时间间隔
一:使用DateAdd方法向指定日期添加一段时间间隔,截图二:代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;usin...
分类:其他好文   时间:2014-06-07 00:13:56    阅读次数:292
二维dp(O(N^3)实现) zoj3230
1 #include 2 #include 3 #include 4 #define maxn 125 5 using namespace std; 6 7 int cost[maxn][maxn],w[maxn][maxn]; 8 int dp[maxn][maxn]; 9 int N,M;1.....
分类:其他好文   时间:2014-06-04 14:44:42    阅读次数:234
projecteuler---->problem=14----Longest Collatz sequence
title: The following iterative sequence is defined for the set of positive integers: n n/2 (n is even) n 3n + 1 (n is odd) Using the rule above and starting with 13, we generate the followi...
分类:其他好文   时间:2014-06-04 13:56:33    阅读次数:254
贝塞尔曲线代码
调用类using UnityEngine;[System.Serializable]public class Bezier : System.Object { public Vector3 p0; public Vector3 p1; public Vector3 p2; ...
分类:其他好文   时间:2014-06-03 15:52:14    阅读次数:352
C#/Winform实现Win8MetroLoading动画
非常喜欢Metro风格的界面,所以想模仿一下一些UI效果的实现,网上找到了很多,但都是CSS3,WPF等实现,对于XAML和CSS3一窍不通,无奈下只有自己开始写。下面是源码:Dot.cs 1 using System.Drawing; 2 3 namespace MetroLoading ...
分类:Windows程序   时间:2014-06-03 15:36:01    阅读次数:603
实例365(6)---------DateTime.ToString格式化日期,使用DateDiff方法获取日期时间的间隔数
一:DateTime.ToString格式化日期,截图二:代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using ...
分类:其他好文   时间:2014-06-03 15:22:00    阅读次数:414
2014-4-25 运行号:837134 素数求和
#include #include #include #include #include #include #include using namespace std;bool pre_arry[1100];void pre_cnt() //素数筛{ memset(pre_arry,1,sizeof....
分类:其他好文   时间:2014-06-03 14:57:38    阅读次数:259
【转载】 ERROR 1045 (28000): Access denied for user root@localhost (using password: NO)
来自:http://www.jb51.net/LINUXjishu/10981.html错误描述: Mysql中添加用户之后可能出现登录时提示ERROR 1045 (28000): Access denied for user的错误.删除user.user中值为NULL的,或更新NULL为test ...
分类:数据库   时间:2014-06-03 14:44:43    阅读次数:491
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!