Skip to content

Commit

Permalink
solution
Browse files Browse the repository at this point in the history
  • Loading branch information
sabira-khan committed Apr 25, 2022
1 parent 4d8db64 commit 35f75b5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions JavaSolutions/src/com/gitproject/Beecrowd1258_uri.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package com.gitproject;public class Beecrowd1258_uri {
}
17 changes: 17 additions & 0 deletions JavaSolutions/src/com/gitproject/Beecrowd3303_uri.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.gitproject;

import java.io.IOException;
import java.util.Scanner;

public class Beecrowd3303_uri {
public static void main(String[] args) throws IOException {
Scanner s = new Scanner(System.in);
while (s.hasNext()) {
String w = s.nextLine();
if (w.length() >= 10)
System.out.println("palavrao");
else
System.out.println("palavrinha");
}
}
}

0 comments on commit 35f75b5

Please sign in to comment.