码迷,mamicode.com
首页 > 其他好文 > 详细

第三次作业

时间:2016-09-11 12:51:45      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

package 排序;

import static org.junit.Assert.*;

import org.junit.Before;
import org.junit.Test;

public class reverseTest {
reverse re = new reverse();
int a[][]=new int[5][5];
@Before
public void setUp() throws Exception {
}

@Test
public void testReverse() {
if(re.reverse(a[2][2])){
for(int x=0;x<a.length;x++){
for(int y=1;y<a[x].length;y++){
if(x!=y){
int t=a[x][y];
a[x][y]=a[y][x];
a[y][x]=t;
}
}
}
System.out.println("you are wrong");

}
else if(re.reverse(a[2][2])){
for(int x=0;x<a.length;x++){
for(int y=x;y<a[x].length;y++){
if(x!=y){
int t=a[x][y];
a[x][y]=a[y][x];
a[y][x]=t;
}
}
}
re.reverse(a);
}
}

}

 技术分享

 

第三次作业

标签:

原文地址:http://www.cnblogs.com/Pinkleopard/p/5861322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!