Ver código fonte

fix quiz3

master
吴冕志 1 ano atrás
pai
commit
37224203c1
1 arquivos alterados com 2 adições e 1 exclusões
  1. +2
    -1
      lab2/datalab-handout/bits.c

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

@ -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

Carregando…
Cancelar
Salvar