摘要: update point set point.boundry=b_point.p_index from point,b_point where point.point_x_y=b_point.point_x_y;select count(*) from point,b_point where po... 阅读全文
posted @ 2015-08-10 20:46 微博和csdn还有你 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int i = 8; printf("%d\n",++i); printf("%d\n",--i); printf("%d\n",i++); printf("%d\n",i--); printf("%d\n",... 阅读全文
posted @ 2015-08-10 15:08 微博和csdn还有你 阅读(467) 评论(0) 推荐(0) 编辑
摘要: #include int value =0; void printvalue() { printf("value = %d/n",value); };int main(){ int value = 0; value =1; printf... 阅读全文
posted @ 2015-08-10 14:58 微博和csdn还有你 阅读(283) 评论(0) 推荐(0) 编辑