代码搜索:逻辑运算
找到约 275 项符合「逻辑运算」的源代码
代码结果 275
www.eeworm.com/read/467806/7001728
txt 例1.30.txt
例1.30 数组的逻辑运算。
>> X=magic(4)
X =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
>> Y=mod(X,3)
Y =
1 2 0 1
2
www.eeworm.com/read/304061/13802299
txt 例1.30.txt
例1.30 数组的逻辑运算。
>> X=magic(4)
X =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
>> Y=mod(X,3)
Y =
1 2 0 1
2
www.eeworm.com/read/280028/10359885
htm 3.3.5.php.htm
逻辑运算
a {text-decoration: none;color:#6666ff;}
a:hover {color:#ff0000;}
www.eeworm.com/read/11251/214625
c 6_06.c
/*【例6-6】逻辑表达式的运用。*/
/* 逻辑运算示例 */
#include
int main(void)
{
char ch = 'w';
int a = 2, b = 0, c = 0;
float x = 3.0;
printf("%d ", a && b);
printf("%d ", a ||