编程题: 题目:主函数 main()中由数字与字母组成的字符串s为测试数据,程序 首先从字符串 s尾部开始,按逆序把在其中出现的每相邻的两个字 符,紧随其后重复出现一次,若字符串 s中头部有剩余的单个字 重复,生成新的字符串 t;然后计算字符串t中数字子串对应 整数的各位数字之和。 例如 : 当s="A48CD06",则字符串t为"6060DCDC8484AA",其数字子串对 应整数的各位数字之和为 12和24。 编写程序: 1. 编写函数void GenStr(char s[],char t[]),按上述规则生成 字符串,结果保存在字符数组 t中。 2. 编写函数int Calculate(char t[],int b[]),计算字符串t中各 个数字子串对应整数的各位数字之和,结果保存在整数数组 b中, 函数返回整数个数。 ************************************************************** 注意:请勿改动主程序 main()中的任何语句。 *************************************************************/ #include
#include
#include
#include
#include
#define N 80 void GenStr(char s[],char t[]) { /**********Program**********/ /********** End **********/ } int Calculate(char t[],int b[]) { /**********Program**********/ /********** End **********/ } int main() { char s[]="A48CD06"; char t[N]; 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,t); printf("The string t is: %s\n",t); fprintf(fp,"The string t is: %s\n",t); num= Calculate(t,b); printf("Sum of the digits of each integer is: "); fprintf(fp,"Sum of the digits of each integer is: "); for(i=0;i