黑马程序员技术交流社区
标题:
eclipse复制过来的代码空格没有了
[打印本页]
作者:
136616244
时间:
2014-5-4 10:45
标题:
eclipse复制过来的代码空格没有了
package Day11;
import java.util.Scanner;
public class Try {
public static void main(String[] args) {
// TODO Auto-generated method stub
Try t = new Try();
try {
int num = t.div(4,0);
System.out.println(num);
} catch (Exception e) {
System.out.println("异常啦!");
}
}
int div(int a,int b)throws Exception{
return a/b;// throw new Exception
}
}
class If{
Scanner s = new Scanner(System.in);
int num = s.nextInt();
void function(){
if(!(num==0)){
int num = div(4,0);
System.out.println(num);
}
else{
System.out.println("异常啦");
}
System.out.println("over");
}
int div(int a, int b){
return a/b;
}
}
作者:
136616244
时间:
2014-5-4 10:47
本帖最后由 136616244 于 2014-5-4 10:48 编辑
复制到代码框里面 前面的空格空格就看不见了
package Day11;
import java.util.Scanner;
public class Try {
public static void main(String[] args) {
// TODO Auto-generated method stub
Try t = new Try();
try {
int num = t.div(4,0);
System.out.println(num);
} catch (Exception e) {
System.out.println("异常啦!");
}
}
int div(int a,int b)throws Exception{
return a/b;// throw new Exception
}
}
class If{
Scanner s = new Scanner(System.in);
int num = s.nextInt();
void function(){
if(!(num==0)){
int num = div(4,0);
System.out.println(num);
}
else{
System.out.println("异常啦");
}
System.out.println("over");
}
int div(int a, int b){
return a/b;
}
}
复制代码
作者:
轻语。
时间:
2014-5-4 12:11
ctrl+shift+f 格式化一下试试。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2