Skip to content

Commit

Permalink
Submission Accepted on the Beecrowd !
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitrimarinho committed Oct 3, 2022
1 parent 2367fb7 commit 15f97ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Begginer/Java Codes/Beecrowd_1022_TDA_Racional.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ public static void main(String[] args) {
for(int i = 0; i < N; i++){

int N1 = input.nextInt();
char barra1 = input.next().charAt(0);
int D1 = input.nextInt();
char barra1 = input.next().charAt(0);
int D1 = input.nextInt();

char operacao = input.next().charAt(0);
char operacao = input.next().charAt(0);

int N2 = input.nextInt();
char barra2 = input.next().charAt(0);
int D2 = input.nextInt();
int N2 = input.nextInt();
char barra2 = input.next().charAt(0);
int D2 = input.nextInt();

input.nextLine(); // esvazia o buffer do teclado

Expand Down

0 comments on commit 15f97ae

Please sign in to comment.