Commit 0aaf949

mo <mo.khan@gmail.com>
2019-05-27 02:55:36
add problem 1 statement
1 parent 856c35d
Changed files (2)
src/Q1/README.md
@@ -4,6 +4,19 @@ Name: Mo Khan
 Student ID: 3431709
 
 1. Problem Statement:
+
+Read three sentences from the console application. Each sentence should not exceed 80 characters.
+Then, copy each character in each input sentence in a [3 x 80] character array.
+The first sentence should be loaded into the first row in the reverse order of characters – for example,
+"mary had a little lamb" should be loaded into the array as "bmal elttil a dah yram".
+The second sentence should be loaded into the second row in the reverse order of words – for example, "mary had a little lamb" should be loaded into the array as "lamb little a had mary".
+The third sentence should be loaded into the third row where if the index of the array is divisible by 5,
+then the corresponding character is replaced by the letter ‘z’ – for example,
+"mary had a little lamb" should be loaded into the array as "mary zad azlittze lazb" – that is,
+characters in index positions 5, 10, 15, and 20 were replaced by ‘z’.
+Note that an empty space is also a character, and that the index starts from position 0.
+Now print the contents of the character array on the console.
+
 2. Description of the Code: 
 3. Errors and Warnings:
 4. Sample Input and Output:
src/Q1/ReversedSentence.java
@@ -1,5 +1,25 @@
 package Q1;
 
 public class ReversedSentence {
+  public static String change5thPosition(String s) {
+    return "";
+  }
+
+  public static String printChar2DArray(char[][] arr) {
+    return "";
+  }
+
+  public static String reverseByCharacter(String s) {
+    return "";
+  }
+
+  public static String reverseByWord(String s) {
+    return "";
+  }
+
+  public static String truncateSentence(String s) {
+    return "";
+  }
+
   public static void main(String[] args) {}
 }