fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int t[] = { 8, 4, 3, 2, 1 }, i;
  5. for(i = t[4]; i < t[0]; i++)
  6. t[i - 1] = -t[3];
  7. cout << i;
  8. return 0;
  9. }
  10.  
  11.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
2