zoukankan      html  css  js  c++  java
  • java诗词横版--转为竖版

    import java.util.Arrays;

    /*
    诗句横版转成竖版输出
    */
    public class PrintPoem {
    public static void main(String[] args){
    char[][] poem = new char[][]{
    //toCharArray将字符串转成字符数组
    "声声慢·寻寻觅觅".toCharArray(),
    "[宋] 李清照".toCharArray(),
    "寻寻觅觅,冷冷清清,凄凄惨惨戚戚。".toCharArray(),
    "乍暖还寒时候,最难将息。".toCharArray(),
    "三杯两盏淡酒,怎敌他、晚来风急?".toCharArray(),
    "雁过也,正伤心,却是旧时相识。".toCharArray(),
    "满地黄花堆积。憔悴损,如今有谁堪摘?".toCharArray(),
    "守着窗儿,独自怎生得黑?".toCharArray(),
    "梧桐更兼细雨,到黄昏、点点滴滴。".toCharArray(),
    "这次第,怎一个愁字了得!".toCharArray()
    };

    //找出最大长度
    int max = 0;
    for(int i = 0;i<poem.length;i++){
    int t = poem[i].length+1;
    if(max<t){
    max = t;
    }
    }
    //输出
    //循环max行
    for(int j = 0;j<max;j++){
    for(int k = poem.length-1;k>=0;k--){ //排列前数组的行,用来确定每行的字数
    if (j<poem[k].length){
    System.out.print(poem[k][j]+" ");
    }
    else System.out.print(" ");
    }
    System.out.println();
    }


    }
    }
  • 相关阅读:
    c++ new 堆 栈
    c++ int 负数 补码 隐式类型转换
    python json 序列化
    %pylab ipython 中文
    matplotlib中什么是后端
    IPython 4.0发布:Jupyter和IPython分离后的首个版本
    ipython
    python 类
    python 高级特性
    windows网络模型
  • 原文地址:https://www.cnblogs.com/turningli/p/10463914.html
Copyright © 2011-2022 走看看