摘要: 雅虎天气API yahoo天气预报的url是 http://weather.yahooapis.com/forecastrss?w=2151330&u=c(返回的是XML数据) 说说里面参数代表的意思: 参数w对应各个地方在yahoo数据库中的WOEID,如北京的WOEID是215... 阅读全文
posted @ 2013-02-06 16:59 N3verL4nd 阅读(275) 评论(0) 推荐(0)
摘要: #include using namespace std;int main(){ int a = 10; int b = 20; int c = 30; int *p[3] = {&a,&b,&c}; for(int **q = p; q != p + 3; q++) { cout using... 阅读全文
posted @ 2013-02-06 15:31 N3verL4nd 阅读(142) 评论(0) 推荐(0)