所以 - 我的程序不停止條件(str2 [o]!='+') 所以如果有人知道爲什麼以及如何解決它,它會幫助我(:。。。。我的程序並不停止條件
這是我的代碼 - 。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char str3[9]= "2+48*4+7";
char str2[9];
int w =0,o = 0;
for(w = 0; w < 9; w++)
{
if(str3[w] == '*')
{
while(str2[o] != '+')
{
str2[o] = str3[w];
o++;
w++;
}
}
}
printf("%s\n",str2);
}
謝謝大家誰可以看到並告訴我,爲什麼程序不上規定的條件停止
這段代碼會做什麼和預期的結果? (str2 [o] = str3 [w]!='+') { o ++; – herohuyongtao
w ++; } – MAKZ
或簡單地while((str2 [o ++] = str3 [w ++])!!='+'); – MAKZ