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.
我刚开始用 C 和一般情况下编程。我在语法上有问题。我知道我想说的逻辑明智,但我只是不知道正确的格式/语法。
谢谢!
我该怎么写:“而整数 n 不等于 10 或 20”
我该怎么写:“而整数 n 介于 10 和 20 之间”
我该怎么写:“而整数 n 介于 10 和 20(含)或 30 和 40(含)之间”
我该怎么写:“虽然整数 n 不在 10 和 20 之间或 30 和 40 之间”
while( n != 10 && n != 20 ) while( n >= 10 && n <= 20 ) while( ( n >= 10 && n <= 20 ) || ( n >= 30 && n <= 40 )) while( ! ( n >= 10 && n <= 20 ) && ! ( n >= 30 && n <= 40 ))