A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

判断一个字符串是否是对称字符串,例如"abc"不是对称字符串,"aba"、"abba"、"aaa"、"mnanm"是对称字符串
   
* OK Test45--编写程序计算12+22+32+....+1002的和

2 个回复

倒序浏览
  1. public static void main(String[] args) {
  2.                 int sum = 0;
  3.                 for (int i = 12; i <= 1002; i += 10) {
  4.                         sum += i;
  5.                 }
  6.                 System.out.println(sum);
  7.         }
复制代码
回复 使用道具 举报
  1. public static void main(String[] args) {
  2.                 Scanner sc = new Scanner(System.in);
  3.                 String str = sc.nextLine().trim();
  4.                 sc.close();
  5.                 int n = str.length();

  6.                 for (int i = 0; i < n / 2; i++) {
  7.                         if (str.charAt(i) != str.charAt(n - 1 - i)) {
  8.                                 System.out.println("flase");
  9.                                 return;
  10.                         }
  11.                 }
  12.                 System.out.println("true");

  13.         }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马