摘要:int subMax(int a[],int n) { int max=a[0]; int sub_max=a[0]; for (int i = 1; i < n; i++) { if(a[i]>max) { //update max and sub max sub_max=max; max=a[i 阅读全文
摘要:通常遇到这种情况,在关闭VS的时候还会有一个弹窗提示sql server compact4.0没有安装。我是两步解决的。 首先,第一步安装它提示个这个包,下载地址Download sql server compact4.0 下载好按照提示一步一步走完。 然后第二步,比较重要,在vs2013里面更改一 阅读全文