Formatted with Google Java Formatter

This commit is contained in:
github-actions 2021-09-17 11:38:05 +00:00
parent d8b06a35d4
commit cccb7be7d8

View File

@ -3,17 +3,20 @@ package Misc;
import java.util.Scanner; import java.util.Scanner;
/** /**
* <h1>Find the Transpose of Matrix!</h1> Simply take input from the user and *
* print the matrix before the transpose and after the transpose. *
* <p> * <h1>Find the Transpose of Matrix!</h1>
* <b>Note:</b> Giving proper comments in your program makes it more user *
* friendly and it is assumed as a high quality code. * Simply take input from the user and print the matrix before the transpose and after the
* transpose.
*
* <p><b>Note:</b> Giving proper comments in your program makes it more user friendly and it is
* assumed as a high quality code.
* *
* @author Rajat-Jain29 * @author Rajat-Jain29
* @version 11.0.9 * @version 11.0.9
* @since 2014-03-31 * @since 2014-03-31
*/ */
public class matrixTranspose { public class matrixTranspose {
public static void main(String[] args) { public static void main(String[] args) {
/* /*
@ -72,5 +75,4 @@ public class matrixTranspose {
System.out.print("\n"); System.out.print("\n");
} }
} }
} }