- 我也是新手~共同学习~
- public class Day3 {
- public static void main(String[] args){
- char[] ch=new char[]{'a','b','c'};
- for(int i=0;i<3;i++){
- System.out.print("'"+ch[i]+"'");
- }
- System.out.println();
- for(int i=0;i<3;i++){
- for(int j=0;j<3;j++){
- if(ch[i]!=ch[j]){
- System.out.print("'"+ch[i]+ch[j]+"'");
- }
- }
- }
- System.out.println();
- for(int i=0;i<3;i++)
- for(int j=0;j<3;j++)
- for(int k=0;k<3;k++){
- if(ch[i]!=ch[j]&&ch[j]!=ch[k]&&ch[i]!=ch[k]){
- System.out.print("'"+ch[i]+ch[j]+ch[k]+"'");
- }
- }
- }
- }
复制代码
|