首先获得一个字符用ch=getchar()或者scanf ("%c", &ch); 其次判断字符相等直接用== 接着j没有定义 最后输出int数组用循环 参考代码: #include #include int main(){ char a[80] = "abcdefgh\0"; char ch; int i, m, b[80]; int flag = 0; ch
麻烦告诉我什么语言