#include
int main(void)
{
int a,b,c,d;
printf("輸入整數區間:");
scanf("%d,%d",&a,&b);
int str1[b-a];
for(int p=0;p<=b-a;p++)
{
str1[p]=a+p;
}
printf("輸入整數區間:");
scanf("%d,%d",&c,&d);
int str2[d-c];
for(int q=0;q<=b-a;q++)
{
str2[q]=c+q;
}
printf("交集為:");
for(int m=0;m<=b-a;m++)
for(int n=0;n<=d-c;n++)
if(str1 [m] == str2 [n])
{
printf("%2d",str1[m]);
}
return 0;
}
語法自己處理邏輯這裡有問題
for(int q=0;q<=**b-a**;q++) // d-c
{
str2[q]=c+q;
}