面试两道题目
第一道 打印以下图像
第二道 如何在不使用第三方变量的前提下,交换两个变量 !
/***实现以下的图像
****利用不同的方法
*
***
*****
*******
*********
*********
*******
*****
***
*
*/
public class Demo723{
public static void main(String[] args){
for(int i=0;i<=4;i++){
for(int j=0;j<-i+4;j++)
System.out.print(" ");
for(int c=0;c<2*i+1;c++)
System.out.print("*");
System.out.println();
}
for(int j = 0;j<=4;j++){
for(int i=0;i<j;i++)
System.out.print(" ");
for(int c= 0;c<-2*j+9;c++)
System.out.print("*");
System.out.println();
}
----------------------------------------------------
int a=1;
int b=2;
int temp;
temp=a;
a=b;
b=temp;
System.out.println("a="+a+";b="+b);
int c=1;
int d=2;
c=c+d;
d=c-d;
c=c-d;
System.out.println("c="+c+";d="+d);
int p=1;
int q=2;
p=p^q;
q=p^q;
p=p^q;
System.out.println("p="+p+";q="+q);
int m=1;
int n=2;
m=n+0*(n=m);
System.out.println("m="+m+";n="+n);
}
}
本文解析了两道常见的面试编程题目:一是打印特定图形的多种方法;二是不使用额外变量进行两个变量值的交换,提供了多种实现方案并附带代码示例。
&spm=1001.2101.3001.5002&articleId=5758841&d=1&t=3&u=97bd612de67b42aab1b3d10463148526)
637

被折叠的 条评论
为什么被折叠?



