新微赢技术网
标题:
[求助]关于字符串的比较问题
[打印本页]
作者:
萧十一郎
时间:
2009-11-5 00:19
标题:
[求助]关于字符串的比较问题
遇到的题目要判断一个字符的二维数组a[][]是不是‘0’
我用的是strcmp(a[i],'0')!=0
可是会报错,
error C2664: 'strcmp' : cannot convert parameter 2 from 'const char' to 'const char *'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
不知道为什么?要怎么改?希望大虾指点一下 谢谢!
作者:
lala
时间:
2009-11-5 00:19
if(a[i][j]!='0')//a[i]是char*类型,'0'是char型,类型不匹配....
作者:
精彩的瞬鐧
时间:
2009-11-5 00:19
哦哦 谢谢这个明白了
但是那个是我程序的一部分
for(m=0;m<100;m++)
for(j=0;j<102;j++) a[m][j]='0';
do
{
scanf("%s" ,a[i]);
i++;
}while(strcmp(a[i],'0')!=0);
在while 里面的不知道怎么改呢?
是读入字符串 如果是0就停止
作者:
梦aiq逍遥
时间:
2009-11-5 00:19
while(strcmp(a[i],“0”)!=0;
作者:
死了ye要爱
时间:
2009-11-5 00:19
还是不能通过。。。555555555555555
作者:
爱人好难a
时间:
2009-11-5 00:19
int main()
{
char a[100][102];
for(int m=0;m<100;m++)
for(int j=0;j<102;j++) a[m][j]='0';
int i=0;
do
{
scanf("%s" ,a[i]);
}while(strcmp(a[i++],"0")!=0);
}
作者:
青松
时间:
2009-11-5 00:19
感谢LITCAYYX!把I++改成I-1就对了!
呵呵 谢啦~
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2