倒序输出的几种简单方法

  1. public class T {
  2.     public static void main(String[] args) {
  3.         StringBuffer sbf = new StringBuffer();
  4.         sbf.append("abcdefghick123456");
  5.         System.out.println(sbf.reverse().toString());
  6.     }
  7. }//字符串的倒序输出
  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. public class T {
  5.     public void order() throws IOException {
  6.         InputStreamReader is = new InputStreamReader(System.in);
  7.         BufferedReader br = new BufferedReader(is);
  8.         String str = br.readLine();
  9.         char c[] = str.toCharArray();
  10.         int i = str.length();
  11.         i--;
  12.         char temp;
  13.         for (int j = 0; j < i; j++, i--) {
  14.             temp = c[j];
  15.             c[j] = c[i];
  16.             c[i] = temp;
  17.         }
  18.         System.out.println(new String(c, 0, str.length()));
  19.     }
  20.     public static void main(String[] args) throws IOException {
  21.         new T().order();
  22.     }
  23. }//输入的倒序输出

  1. public class T {
  2.     public static void main(String[] args) {
  3.         int[] array = { 123456789 };
  4.         for (int i = array.length - 1; i >= 0; i--) {
  5.             System.out.print(i);
  6.         }
  7.     }
  8. }//字符串的倒序输出

你可能感兴趣的:(倒序输出的几种简单方法)