即時消息試圖從我的表中打印和計算某個數組。我想打印'O'並計算彈出次數。計數部分我知道了,但要以表格格式打印'O'我不能。每次我會嘗試打印'O',它給了我開心的表情。打印某些數組
char poste[]={'A','P','A','P','A','O','P','P','O'};
for(i=0;i<9;i++)
{
if(poste[i]=='O') count++;
}
printf("Number of operators :%d\n", count);
printf("Poste\n");
for(i=0; i<9;i++)
{
printf("%c",poste[i]=='O');
}
執行給我的這些幸福的笑臉
Poste
A
P
A
P
A
O
P
P
O
number of operators :2
Poste
☺ ☺
THX,我完全忘記了==跡象意味着真正等於1。 – user3268216