摘要: 问题1:求以下程序段的输出int test(int x, int y){ x = x + y; return x * y;}int main(int argc, const char * argv[]){ @autoreleasepool { int x = 3, y = 10, z = test(x, y); NSLog(@"%d%d", x++, ++z); } return 0;}答案:3131问题2:求以下程序段的输出int func(int x){ int countx = 0; while (x)... 阅读全文
posted @ 2013-02-20 18:21 And.He 阅读(1503) 评论(6) 推荐(0) 编辑