Skip to content

Commit ea069ce

Browse files
Crc.java
1 parent 6fcbf8b commit ea069ce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Crc.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ public static void main(String args[]) throws IOException
1717
System.out.println("\nPlease enter the received code word: ");
1818
String rec=br.readLine();
1919
if(Integer.parseInt(div(rec, gen))==0)
20-
System.out.println("\nThe received code word contains NO Errors\n");
20+
System.out.println("\nThe received code word contains NO Errors.\n");
2121
else
22-
System.out.println("\nThe received code word contains Errors\n");
22+
System.out.println("\nThe received code word contains Errors.\n");
2323
}
2424
static String div(String num1, String num2)
2525
{
2626
int pointer=num2.length();
2727
String result=num1.substring(0, pointer);
28-
String remainder=" ";
28+
String remainder="";
2929
for (int i=0; i<num2.length(); i++)
3030
{
3131
if (result.charAt(i)==num2.charAt(i))
@@ -42,7 +42,7 @@ static String div(String num1, String num2)
4242
pointer++;
4343
}
4444
result=remainder;
45-
remainder=" ";
45+
remainder="";
4646
for(int i=0; i<num2.length(); i++)
4747
{
4848
if (result.charAt(i)==num2.charAt(i))
@@ -53,4 +53,4 @@ static String div(String num1, String num2)
5353
}
5454
return remainder.substring(1, remainder.length());
5555
}
56-
}
56+
}

0 commit comments

Comments
 (0)