Ver código fonte

finish quize 2-3

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

+ 7
- 3
lab2/datalab-handout/bits.c Ver arquivo

@ -159,8 +159,9 @@ int bitXor(int x, int y) {
* Rating: 1
*/
int tmin(void) {
return 2;
int one = 1;
int res = one << 31;
return res;
}
//2
@ -172,7 +173,10 @@ int tmin(void) {
* Rating: 1
*/
int isTmax(int x) {
return 2;
int xplusone = x + 1;
int all1 = xplusone ^ x;
int allzero = all1 + 1;
return !allzero;
}
/*
* allOddBits - return 1 if all odd-numbered bits in word set to 1

Carregando…
Cancelar
Salvar