- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
National Computer Rank Examination (2009年9月串讲资料) #include stdio.h main() {int x; scanf (%d, x); if(x=3) ; else if (x!=10) printf(%d\n, x); } #include stdio.h main() {int a=1,b=2,c=3,d=0; if(a==1b++==2) if(b!=2 || c--!=3) printf(%d,%d,%d\n,a,b,c); else printf(%d,%d,%d\n,a,b,c); else printf(%d,%d,%d\n,a,b,c); } for(i=0; i4; i++, i++) for(k=l; k3; k++); printf(*); #include stdio.h main() {char *s={ABC}; do {printf(%d,*s%10); s++; }while(*s); } #include stdio.h main() {int a1,a2; char c1,c2; scanf(%d%c%d%c,a1,c1,a2,c2); printf(%d,%c,%d,%c,a1,c1,a2,c2); } #include stdio.h int f(int x,int y) {return ((y-x)*x);} main() {int a=3,b=4,c=5,d; d=f(f(a,b),f(a,c)); printf(%d\n,d); } #include stdio.h void fun(char *s) {while(*s) {if(*s%2==0)printf(%c,*s); s++; } } main() {char a[]={good}; fun(a);printf(\n); } #include stdio.h void fun(int *a,int *b) {int *c; c=a;a=b;b=c; } main() {int x=3,y=5,*p=x,*q=y; fun(p,q);printf(%d,%d
文档评论(0)