#include <stdio.h>
int isvowel(char c)
{int is;
switch(c)
{case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
is=1;
break;
default:is=0;
}
return is;
}
#include <stdio.h>
int isvowel(char c)
{int is;
switch(c)
{case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
is=1;
break;
default:is=0;
break;
}
return is;
}
你看一下是不是你有打开了的程序没关