the expected output is
*_*_*_*_*
*_*_*_*_*
*_*_*_*_*
*_*_*_*_*
*_*_*_*_*

but my code is kindof wrong

public class RowColumnStarUn derscore {

public static void main(String[] args) {

int TOTAL_ROWS = 5;
int TOTAL_COLUMNS = 5;


for(int row=1;row<=TOTA L_ROWS;row++) {

for(int col=1; col <=TOTAL_COLUMNS ;...