欢迎DaLao指导

博客名称

你的一句话介绍

摘要: 2010年3月某杀毒软件笔试题: 1: int func(int i); 2: int main(void) 3: { 4: cout<<func(9999)<<endl; 5: } 6: int func(int i) 7: { 8: int count=0; 9: while(i!=0) 10: { ... 阅读全文
posted @ 2014-08-22 15:53 麻辣咸鱼 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 下列代码的输出值是多少: 1: #include "stdafx.h" 2: #include 3: using namespace std; 4: 5: int _tmain(int argc, _TCHAR* argv[]) 6: { 7: int x=2,y,z; 8: x*=(y=z=5);cout<<x<<endl; ... 阅读全文
posted @ 2014-08-22 15:39 麻辣咸鱼 阅读(290) 评论(0) 推荐(1) 编辑