Przeglądaj źródła

fix quiz3

master
吴冕志 1 rok temu
rodzic
commit
37224203c1
1 zmienionych plików z 2 dodań i 1 usunięć
  1. +2
    -1
      lab2/datalab-handout/bits.c

+ 2
- 1
lab2/datalab-handout/bits.c Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz