• Profile picture of Jagnen Anims

    Jagnen Anims changed their profile picture 2022-09-26 12:22:59 UTC

    • 1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      name: End-to-end tests:grabberio
      on: [push]
      jobs:
      alt-run:
      runs-on: sn-20.22
      steps:
      – name: Checkout : jagnen anims
      uses: actions/checkout@jagnen
      # ReInstall NPM dependencies, cache them correctly-delete_browser_dependents
      # and run all Urge tests
      – name: Axis Walk
      uses: sticknodes.com-io/[email protected]

      Run : Completed

      2022-09-26 12:29:51 UTC 1
      • Replying to: 🎄🏳️‍⚧️René (F)🏳️‍⚧️🎄1 2 3 4 5 6 7 8 9 10 11 12 name: End-to-end tests:grabberio

        I’m so confused plz stop bothering me

        2022-09-26 12:31:48 UTC 0
      • Replying to: 🎄🏳️‍⚧️René (F)🏳️‍⚧️🎄1 2 3 4 5 6 7 8 9 10 11 12 name: End-to-end tests:grabberio

        import java.util.Scanner;
        import java.io.File;
        import java.io.IOException;
        public class DoPayroll {
        public static void main(String args[])
        throws IOException {
        Scanner diskScanner =
        new Scanner(new File(“EmployeeInfo.txt”));
        for (int empNum = 1; empNum <= 3; empNum++) {
        payOneEmployee(diskScanner);
        }
        diskScanner.close();
        }
        static void payOneEmployee(Scanner aScanner) {
        Employee anEmployee = new Employee();
        anEmployee.setName(aScanner.nextLine());
        anEmployee.setJobTitle(aScanner.nextLine());
        anEmployee.cutCheck(aScanner.nextDouble());
        aScanner.nextLine();
        }
        }

        Station : Grabifiy

        2022-09-26 12:33:18 UTC 0
        • Replying to: 🎄🏳️‍⚧️René (F)🏳️‍⚧️🎄import java.util.Scanner; import java.io.File; import java.i

          /*
          * The pattern in Listing 8-2
          */
          import java.util.Scanner;
          import java.io.File;
          import java.io.IOException;
          class SomeClassName {
          public static void main(String args[])
          throws IOException {
          Scanner scannerName =
          new Scanner(new File(“SomeFileName));
          //Some code goes here
          scannerName.nextInt();
          scannerName.nextDouble();
          scannerName.next();
          scannerName.nextLine();
          //Some code goes here
          scannerName.close();
          }
          }

          Task | completed

          2022-09-26 12:33:43 UTC 0