L1-015 跟奥巴马一起画方块 (15 分) java

L1-015 跟奥巴马一起画方块 (15 分)



import java.util.Scanner;
/**
 * 
 * @author 曹家伟
 *
 */
public class Main {
	public static void main(String[] args) {
		Scanner s=new Scanner(System.in);
//		int n=s.nextInt();
//		char ch1=s.
		String str = s.nextLine();
		String[] ch=str.split(" ");
		int n=Integer.parseInt(ch[0]);
		int b=0;
		if(n%2==0) {
			b=n/2;
		}else {
			b=(int)(n/2)+1;
		}
//		System.out.println(b);
		for(int i=0;i

 

你可能感兴趣的:(天梯赛)