Advertisement
sergAccount

Untitled

Aug 9th, 2020
1,136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.40 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.app10;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test {
  13.    
  14.     public static void main(String[] args) {
  15.         // char        
  16.         char c = 'A';
  17.         System.out.println(c);
  18.         // тип String
  19.         String s;        
  20.         System.out.println("HELLO JAVA!");
  21.        
  22.         s = "HELLO JAVA dsfds gfdsf dsf dsf sdf dsfdf dsfds !";
  23.         String s1 = "JDDKDKD";        
  24.         //
  25.         String s3 = s;
  26.         System.out.println(s3);
  27.        
  28.         String a = "HELLO!!!!F";
  29.         String b = "JAVA";
  30.         String res = a + b + "!" + "fsdfdsf " + "asfasfasf !!!!";
  31.         System.out.println(res);      
  32.         // используем метод length() - получаем длину строки (количесво симовлов строки)
  33.         System.out.println(a.length());        
  34.         System.out.println(b.length());        
  35.         // получаем символ из строки
  36.         char c1 = a.charAt(0);
  37.         System.out.println(c1);
  38.         // получаем последний символ из строки
  39.         char c2 = a.charAt(a.length()-1);
  40.         System.out.println(c2);        
  41.     }    
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement