File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ public static void main(String args[]) throws IOException
17
17
System .out .println ("\n Please enter the received code word: " );
18
18
String rec =br .readLine ();
19
19
if (Integer .parseInt (div (rec , gen ))==0 )
20
- System .out .println ("\n The received code word contains NO Errors\n " );
20
+ System .out .println ("\n The received code word contains NO Errors. \n " );
21
21
else
22
- System .out .println ("\n The received code word contains Errors\n " );
22
+ System .out .println ("\n The received code word contains Errors. \n " );
23
23
}
24
24
static String div (String num1 , String num2 )
25
25
{
26
26
int pointer =num2 .length ();
27
27
String result =num1 .substring (0 , pointer );
28
- String remainder =" " ;
28
+ String remainder ="" ;
29
29
for (int i =0 ; i <num2 .length (); i ++)
30
30
{
31
31
if (result .charAt (i )==num2 .charAt (i ))
@@ -42,7 +42,7 @@ static String div(String num1, String num2)
42
42
pointer ++;
43
43
}
44
44
result =remainder ;
45
- remainder =" " ;
45
+ remainder ="" ;
46
46
for (int i =0 ; i <num2 .length (); i ++)
47
47
{
48
48
if (result .charAt (i )==num2 .charAt (i ))
@@ -53,4 +53,4 @@ static String div(String num1, String num2)
53
53
}
54
54
return remainder .substring (1 , remainder .length ());
55
55
}
56
- }
56
+ }
You can’t perform that action at this time.
0 commit comments