本来高高兴兴的 升级sdk 到了5.0 结果一打开 eclipse 就发现 可视化界面加载不了。
查了半天 ,有些说是 把 sdk目录下面的 temp 文件夹删除。有些说是升级一下 jdk 的版本, 现在jdk 是 1.6
结果把 jdk 换成了1.7 果真好了呢 ! T T...
分类:
移动开发 时间:
2014-10-28 10:24:38
阅读次数:
146
program bzoj3196;const inf=100000000; maxn=200001; maxm=3000001;var n,m,time,temp:longint; root,a:array [0..maxn] of longint; left,right,r...
分类:
其他好文 时间:
2014-10-27 19:18:46
阅读次数:
214
public class PermutationAndCombination { /// /// 交换两个变量 /// /// 变量1 /// 变量2 public static void Swap(ref T a, ref T b) { T temp = a; a = b; b = temp;.....
分类:
编程语言 时间:
2014-10-27 19:17:47
阅读次数:
262
输入第一行有一个整数m(1 2 #include 3 #define N 1000001 4 5 int main(){ 6 int T; 7 char number[N]; 8 int temp; 9 int i;10 int length;11 ...
分类:
其他好文 时间:
2014-10-27 17:17:26
阅读次数:
178
今天调试了快速算法的代码,当然网上这样的代码一大堆,只是这个是自己一点点写的,中间易错点都出现并调试出来。留着以后自己复习用了。交换代码:void sw(int *a,int *b)//交换数据{ int temp; temp=*a; *a=*b; *b=temp;}实现方法1:////由大到小排序...
分类:
编程语言 时间:
2014-10-27 17:13:00
阅读次数:
177
Problem Description输入n(n 2 3 int main(){ 4 int n; 5 int number[100]; 6 int i; 7 int min; 8 int flag; 9 int temp;10 11 ...
分类:
其他好文 时间:
2014-10-27 17:03:40
阅读次数:
191
Problem Description输入n(n 2 #include 3 4 int main(){ 5 int n; 6 int number[101]; 7 int i; 8 int j; 9 int temp;10 11 whi...
分类:
编程语言 时间:
2014-10-27 16:59:38
阅读次数:
135
-- Create the user create user ADMIN default tablespace SYSTEM temporary tablespace TEMP profile DEFAULT password expire;-- Grant/Revoke role privileg...
分类:
其他好文 时间:
2014-10-26 22:31:26
阅读次数:
234
简单排序:每次找出最大(小)的数,从头开始依次排序。 1 public static int[] simplySort(int a[]) { 2 for (int i = 0; i array[j+1]) { 7 int temp = arr...
分类:
编程语言 时间:
2014-10-26 19:38:14
阅读次数:
310
使用Path对象判断路径的完整性和正确性using System;using System.IO;class Test { public static void Main() { string path1 = @"c:\temp\MyTest.txt"; ...
分类:
编程语言 时间:
2014-10-26 18:17:20
阅读次数:
195