exemplo_3_soma_dois_valores.ivph 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "testcases" : [
  3. {
  4. "input": ["2", "2"],
  5. "output": ["4"]
  6. },
  7. {
  8. "input": ["1", "10"],
  9. "output": ["11"]
  10. },
  11. {
  12. "input": ["5", "5"],
  13. "output": ["10"]
  14. },
  15. {
  16. "input": ["100", "350"],
  17. "output": ["450"]
  18. },
  19. {
  20. "input": ["10", "-10"],
  21. "output": ["0"]
  22. },
  23. {
  24. "input": ["-3", "4"],
  25. "output": ["1"]
  26. }
  27. ] ,
  28. "settings_data_types":
  29. [{"name":"integer_data_type","value":"on"},{"name":"real_data_type","value":"on"},{"name":"text_data_type","value":"on"},{"name":"boolean_data_type","value":"on"},{"name":"void_data_type","value":"on"}],
  30. "settings_commands":
  31. [{"name":"commands_read","value":"on"},{"name":"commands_write","value":"on"},{"name":"commands_comment","value":"on"},{"name":"commands_attribution","value":"on"},{"name":"commands_functioncall","value":"on"},{"name":"commands_iftrue","value":"on"},{"name":"commands_repeatNtimes","value":"on"},{"name":"commands_while","value":"on"},{"name":"commands_dowhile","value":"on"},{"name":"commands_switch","value":"on"}],
  32. "settings_functions":
  33. [{"name":"functions_creation","value":"on"},{"name":"functions_move","value":"on"}] }