Explorar el Código

fix quiz3

master
吴冕志 hace 1 año
padre
commit
37224203c1
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      lab2/datalab-handout/bits.c

+ 2
- 1
lab2/datalab-handout/bits.c Ver fichero

@ -176,7 +176,8 @@ int isTmax(int x) {
int xplusone = x + 1;
int all1 = xplusone ^ x;
int allzero = all1 + 1;
return !allzero;
int notnegative1 = !(x ^ (-1));
return !(allzero | notnegative1);
}
/*
* allOddBits - return 1 if all odd-numbered bits in word set to 1

Cargando…
Cancelar
Guardar