本文介绍了什么是前pression意义(!ARRAY_NAME [指数])用C?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以帮助我了解了什么是除权pression的意义,
如果(!做的[I])

在哪里做的是包含整数元素的数组。
i是范围从0到500进行的指数是一个未初始化数组,只有最后一个元件被明确地填充作为0

在此先感谢.....


解决方案

 如果(做[I])

是相同的

 如果(做[I]!= 0)

因此​​,

 如果(!做的[I])

是相同的

 如果(做[I] == 0)

Can somebody help me understand that what is the meaning of the expression,if(!done[i])

Where done is an array containing integer elements.i is the index which ranges from 0 to 500. done is an uninitialized array and only the last element is explicitly filled as 0.

Thanks in Advance.....

解决方案
if(done[i])

is the same as

if(done[i] != 0)

So,

if(!done[i])

is the same as

if(done[i] == 0)

这篇关于什么是前pression意义(!ARRAY_NAME [指数])用C?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 09:15