第三次华中科技大学c程序设计上机作业.docVIP

第三次华中科技大学c程序设计上机作业.doc

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
第三次华中科技大学c程序设计上机作业.doc

第三次上机 、找出下面程序或程序段中的错误,并改正。 1. ^include iostream using namespace std; int main() { int m; chara[]={T}; cout?a[0]?endl; return 0; } 1 Press any key to continue 2. #include iostream using namespace std; int main() {char a[5]; cin.getline(a,6); cout?a?endl; return 0; sorrysorryPress any key to continue sorry sorry Press any key to continue 3. ^include iostream using namespace std; int main() { char c[]=l am a student; cout?c?endl; return 0; } I an a student Press any key to continue 4.在下而程序中输入China ,要求输出China //include iostream using namespace std; int main() {char a[5],*p; int i; p=a[O]; for(i=0;i=4;i++) cin?a[i]; for(i=0;i=4;i++) cout?*(p+i); return 0; ? E:\4\Debug\4.exe ? E:\4\Debug\4.exe china chinaPress any key to continue 二、编程题 1.编写程序,求输入字符申的长度(长度不包括结束符) //include iostream using namespace std; int main() char a[1000]; int i,lenth=O; cout?请输入字符串:; cin.getline(a,1000); for(i=0;a[i]!=,\0;i++) lenth++; cout?字符串长度为《lenth?endl; } 2.打印杨辉三角形(10行)。使用二维数组井利用每个系数等于其上两系数之 和。 //include〈iostream〉 include iomanip using namespace std; const int n=10; int main() { int a[n][n],ij; for(i=0;in;i++) { a[i][0]=l; a[i][i]=l; } for(i=2;in;i++) for(j=l;ji;j++) a[i][j]=a[i-l][j-l]+a[i-l][j]; for(i=0;in;i++) { for(j=0;j=i;j++) cout?setw(5)?a[i][j]; cout?endl; } return 0; } ebD1\?E:\12345678913605186 112 2 314 0 0 5 6 4 12 3 5 815 5 5 0 6 13 7 2 1 eb D 1\ ?E:\ 123456789112 2 3 14 0 0 5 6 4 12 3 5 8 15 5 5 0 6 13 7 2 1 16 16 6 2 5 2 1 17 8 4 2 8 18 6 3 3.3判断用户输入的字符串(字符串如含有空格字符,先过滤,然后判断过滤 后的串)是否为”回文”,所谓冋文是指顺读和反读都一样的串,例如串 12321、madamo ^include iostream using namespace std; int main() { char a[100],b[100]; int i=O char a[100],b[100]; int i=O,j=O,e,g; cout?请输入字符串:; cin.gethne(a,100); char *p = a; int n = 0; while(*p++) {n++;}//统计输入字符的长度。 cout?n?endl; for(i 二 0;in;i++) {if,,) { b[j]=a[i]; j++; } if(a[i]== { continue; } } bUW; for(e=0;ej;e++) { if(b[e]!=b[j-l-e] g=0; if(b[e]==b[j-l-e]) g=l; } if(g==O) cout不是回文数endl; if(g==l) cout是回文数《endl; return 0;} | * E:\l\Debuq\l.exe 请输入字符串:ail]/ /II

文档评论(0)

ggkkppp + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档