欢迎来到天天文库
浏览记录
ID:18904727
大小:64.50 KB
页数:48页
时间:2018-09-26
《编程20题(期末考试整理)》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Problem1.Description去除字符串中的数字,字符串不多于30InputA1234df4k66l77jodsfOutputAdfkljodsfProblem2.Description输入一个整数,输出所有相加等于这个数的算式Input3Output0+3=31+2=32+1=33+0=3Problem3.constructionqualityacceptanceandassessmentRegulation(ProfessionalEdition)(DL/T5210.2-2009~DL/T5210.8-2009);1.9thequalitycheckoutand
2、evaluationofelectricequipmentinstallationengineeringcode(DL/T5161.1-2002~5161.17-2002);1.10thenormsofconstructionsupervision,theelectricpowerconstructionsupervisionregulationsDescription统计字符串中的单词个数InputThisisac++programOutput5Problem4.Description已知元素从小到大排列的两个数组x[]和y[],请写出一个程序算出两个数组彼此之间差的绝对值
3、中最小的一个,这叫做数组的距离Input第一行为两个数组的元素个数第二行为两个数组元素53158918790798Output1constructionqualityacceptanceandassessmentRegulation(ProfessionalEdition)(DL/T5210.2-2009~DL/T5210.8-2009);1.9thequalitycheckoutandevaluationofelectricequipmentinstallationengineeringcode(DL/T5161.1-2002~5161.17-2002);1.10theno
4、rmsofconstructionsupervision,theelectricpowerconstructionsupervisionregulationsProblem5.Description插入一个数,进行插入排序Input9个排好的数及一个整数Output排好的数列Problem6.Description因数分解,把一个整数分解成质数相乘的形式Input12Output12=2*2*3*1Problem7.Description3025这个数具有一种独特的性质:constructionqualityacceptanceandassessmentRegulation(
5、ProfessionalEdition)(DL/T5210.2-2009~DL/T5210.8-2009);1.9thequalitycheckoutandevaluationofelectricequipmentinstallationengineeringcode(DL/T5161.1-2002~5161.17-2002);1.10thenormsofconstructionsupervision,theelectricpowerconstructionsupervisionregulations将它平分为两段,即30和25,使之相加后求平方,即(30+25)的平方,恰好
6、等于3025本身。请求出具有这样性质的全部四位数。Input无Output特殊的4位平方数Problem8.Description对于输入的每个字符串,查找其中的最大字母,在该字母后面插入字符串“(max)”。输入数据包括多个测试实例,每个实例由一行长度不超过100的字符串组成,字符串仅由大小写字母构成。InputaaabbbbbxxxxxxxOutputaab(max)b(max)b(max)b(max)b(max)x(max)x(max)x(max)x(max)x(max)x(max)x(max)constructionqualityacceptanceandassess
7、mentRegulation(ProfessionalEdition)(DL/T5210.2-2009~DL/T5210.8-2009);1.9thequalitycheckoutandevaluationofelectricequipmentinstallationengineeringcode(DL/T5161.1-2002~5161.17-2002);1.10thenormsofconstructionsupervision,theelectricpowerconstructionsupervis
此文档下载收益归作者所有