求助大佬!! C语言测试,字符串处理问题!!
/*************************************************************题目:主函数main()中由数字与字母组成的字符串s和t为测试数据,程
序首先将未在字符串s中出现、而在字符串t中出现的字符,生成
一个新的字符串a;然后计算字符串a中所有数字子串对应的整数,
找出其平方数中有连续的三位数字就是该数本身的整数。
例如:当s="AB148",t="E250A148C259G376"时,字符串a为
"E250C259G376"。a中数字子串"250",其对应整数平方数为
62500,250便是所要找的一个满足条件的整数。
编写程序:
1. 编写函数void GenStr(char s[],char t[],char a[]),将未在
字符串s中出现、而在字符串t中出现的字符保存在字符数组a中。
2. 编写函数int Calculate(char a[],int b[]),计算字符串a中数
字子串,按上述要求找出所要的整数,结果保存在整数数组b中,
函数返回整数个数。
**************************************************************
注意:请勿改动主程序main()中的任何语句。
*************************************************************/
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<ctype.h>
#include<string.h>
#define N 80
voidGenStr(char s[],char t[],char a[])
{
/**********Program**********/
/**********End**********/
}
int Calculate(char a[],int b[])
{
/**********Program**********/
/**********End**********/
}
int main()
{
char s[]="AB148";
char t[]="E250A148C259G376";
char a;
int b={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,a);
printf("The string a is: %s\n",a);
fprintf(fp,"The string is: %s\n",a);
num=Calculate(a,b);
printf("The integer list is: ");
fprintf(fp,"The integer list is: ");
for(i=0;i<num;i++)
{
printf("%d ",b);
fprintf(fp,"%d ",b);
}
printf("\n");
fprintf(fp,"\n");
fclose(fp);
return 0;
}
我是个汉子 发表于 2019-2-13 17:43
然后计算字符串a中所有数字子串对应的整数,找出其平方数中有连续的三位数字就是该数本身的整数。
比如2 ...
/* **************************************************************
* 注意:请勿改动主程序main()中的任何语句。
**************************************************************
*/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
#define N 80
voidGenStr(char s[], char t[], char a[])
{
/**********Program**********/
int index = 0;
for(int i = 0; t; ++i)
{
int flag = 0;
for(int j = 0; s; ++j)
{
if(t == s)
{
flag = 1;
break;
}
}
if(!flag)
{
a = t;
}
}
a = '\0';
/**********End**********/
}
int Calculate(char a[], int b[])
{
/**********Program**********/
int index = 0;
char *p = a;
while(*p)
{
while(!isdigit(*p))
++p;
b = strtol(p, &p, 10);
char buf1;
char buf2;
char *s1 = itoa((int)pow(b, 2), buf1, 10);
char *s2 = itoa(b, buf2, 10);
if(strpbrk(s1, s2) != NULL)
++index;
}
return index;
/**********End**********/
}
int main()
{
char s[] = "AB148";
char t[] = "E250A148C259G376";
char a;
int b = {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, a);
printf("The string a is: %s\n", a);
fprintf(fp, "The string is: %s\n", a);
num = Calculate(a, b);
printf("The integer list is: ");
fprintf(fp, "The integer list is: ");
for(i = 0; i < num; i++)
{
printf("%d ", b);
fprintf(fp, "%d ", b);
}
printf("\n");
fprintf(fp, "\n");
fclose(fp);
return 0;
}
然后计算字符串a中所有数字子串对应的整数,找出其平方数中有连续的三位数字就是该数本身的整数。
解释一下这句话
另外,这是我自己的理解,对上面那句话的理解
/* **************************************************************
* 注意:请勿改动主程序main()中的任何语句。
**************************************************************
*/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
#define N 80
voidGenStr(char s[], char t[], char a[])
{
/**********Program**********/
int index = 0;
for(int i = 0; t; ++i)
{
int flag = 0;
for(int j = 0; s; ++j)
{
if(t == s)
{
flag = 1;
break;
}
}
if(!flag)
{
a = t;
}
}
a = '\0';
/**********End**********/
}
int Calculate(char a[], int b[])
{
/**********Program**********/
int index = 0;
char *p = a;
char buf;
while(*p)
{
while(!isdigit(*p))
++p;
b = strtol(p, &p, 10);
char *s = itoa((int)pow(b, 2), buf, 10);
int count = 0;
int max_count = 0;
for(int i = 0; s; ++i)
{
switch(s)
{
case '1': case '2': case '3': case '4': case '5':
case '6': case '7': case '8': case '9':
++count;
break;
default:
if(count > max_count)
max_count = count;
count = 0;
break;
}
}
if(max_count == 3)
++index;
}
return index;
/**********End**********/
}
int main()
{
char s[] = "AB148";
char t[] = "E250A148C259G376";
char a;
int b = {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, a);
printf("The string a is: %s\n", a);
fprintf(fp, "The string is: %s\n", a);
num = Calculate(a, b);
printf("The integer list is: ");
fprintf(fp, "The integer list is: ");
for(i = 0; i < num; i++)
{
printf("%d ", b);
fprintf(fp, "%d ", b);
}
printf("\n");
fprintf(fp, "\n");
fclose(fp);
return 0;
}
The string a is: E250C259G376
The integer list is: 250
请按任意键继续. . . #include<人造人>
return 帖子内容; hiwch 发表于 2019-2-13 16:39
#include
return 帖子内容;
??? 人造人 发表于 2019-2-13 17:28
???
输出不对的,376的平方141376,也是啊
人造人 发表于 2019-2-13 17:28
???
然后计算字符串a中所有数字子串对应的整数,找出其平方数中有连续的三位数字就是该数本身的整数。
比如250的平方62500,62500中有250这个数,并且是连续的。关键是连续的。{:10_250:}
人造人 发表于 2019-2-13 19:42
{:9_232:}
页:
[1]