fork download
  1. int main()
  2. {
  3. int key = 3;
  4. int shiftDirection = (key % 2 == 0) ? key : -key;
  5. shiftDirection = shiftDirection % 26;
  6.  
  7. printf("%d", shiftDirection);
  8. }
Success #stdin #stdout 0s 4324KB
stdin
Standard input is empty
stdout
-3