皮皮学,免费搜题
登录
搜题
【简答题】
【程序设计】 题目:主函数 main()中由数字与字母组成的字符串s为测试数据,程序 首先把第 1到第m个字符平移到字符串的最后,第m+1到最后的字 到字符串的前部,生成新的字符串 s;然后计算字符串s中所 有相邻两个数字子串对应整数的最大公约数。 例如:字符串 s为"abc12efg20mf30",m的值为3,则移动后,新字符串s 为 "12efg20mf30abc"。 编写程序: 1. 编写函数void GenStr(char s[],int m),按上述要求生成新的 字符串,结果仍然保存在字符数组 s中。 2. 编写函数int Calculate(char s[],int b[]),计算字符串s中相 邻两个数字子串对应整数的最大公约数,结果保存在整数数组 b 中,函数返回整数个数。 ************************************************************** 注意:请勿改动主程序 main()中的任何语句。 *************************************************************/ #include #include #include #include #include #define N 80 void GenStr(char s[],int m) { /**********Program**********/ /********** End **********/ } int Calculate(char s[],int b[]) { /**********Program**********/ /********** End **********/ } int main() { char s[]="abc12efg20mf30"; int b[N]={0}; int num=0,i=0; FILE *fp; if((fp=fopen("DATA.TXT","w"))==NULL) { printf("File open error\n"); exit(0); } GenStr(s,3); printf("The string s is: %s\n",s); fprintf(fp,"The string s is: %s\n",s); num= Calculate(s,b); printf("The max factor is: "); fprintf(fp,"The max factor is: "); for(i=0;i
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【简答题】企业将持有3月15日出票,120天到期,面值100000元、票面年利率为6%的票据于4月9日申请贴现,年贴现率为12%,则获得的金额为?
【简答题】Reading 1 Decide whether the following statements are true (T) or false (F), based on the article. 1 Last year, the writer’s family conducted a 5-week experiment of living with only one car in the sub...
【单选题】As their suburban household was close to the train station, trains could almost replace the car they used to have.
A.
T
B.
F
【判断题】尼摩船长利用鹦鹉螺号攻击侵略自己祖国印度的英国侵略者的军舰,他还利用在海底打捞获得的巨额财富援助那些被压迫的民族和穷苦的民众,支持他们为争取独立而进行正义的斗争。()
A.
正确
B.
错误
【单选题】Becca completely agrees with Anna in a sense that no App could replace a good teacher.
A.
T
B.
F
【单选题】Becca completely agrees with Anna in a sense that no App could replace a good teacher
A.
T
B.
F
C.
NG
【简答题】近代以来,经济全球化成为世界发展的一种趋势。 材料一:如果可以把1492年看作是全球化的开始,那么首先是葡萄牙和西班牙人开创了现代全球化;然后是大英帝国、法国等欧洲国家开始大规模向全球殖民…… 材料二:马克思在评论鸦片战争时说:在这场决斗中,陈腐世界的代表是激于道义,而最现代的社会的代表却是为了获得贱买贱卖的特权——这真是任何诗人想也不敢想的一种奇异的对联式的悲歌。 材料三:关于鸦片战争这一...
【单选题】()决定了动物的寿命
A.
食物
B.
基因
C.
气候
D.
竞争
【简答题】Decide whether the following statements are true (T) or false (F), based on the article you have just read. (_) 1 Last year,the writer's family conducted a 5-week experiment of living with only one ca...
【单选题】基因突变理论认为老化是:
A.
基因程序预先设定了动物的生命周期
B.
体内细胞的基因有固定的生命周期
C.
体细胞突变造成老年人体内细胞特性改变
D.
以细胞分化的次数来决定个体的寿命
E.
细胞分裂达到一定次数即停止分化,细胞开始衰老
相关题目: