Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个家庭作业,但我对此一无所知。也许你们中的一些人可以帮助我。
(a < 0) ? 1 : -1
这是什么意思?
这基本上是说变量a小于0?如果是1如果不是那么-1就是这样
if(a<0) 1 else -1