fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout << "Hello world!!87878!" << endl;
  6. int param[4] = {1,3,5,7};
  7. int i,j,k,l,m;
  8. int count = 1;
  9. for(i=0;i<10;i++)
  10. {
  11. if (i==0)
  12. {
  13. count = 4;
  14. }
  15. else
  16. {
  17. count = count*4;
  18. }
  19. //for(j=0;j<4;j++)
  20. //{
  21. //for(k=0;k<4;k++)
  22. //{
  23. //for(l=0;l<4;l++)
  24. //{
  25. //count++;
  26. //cout << param[i] << param[j] << param[k] << param[l] << endl;
  27. //}
  28. //}
  29. //}
  30. }
  31. cout << count << endl;
  32. return 0;
  33. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Hello world!!87878!
1048576