Advertisement
Fyri

Untitled

May 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. package com.company;
  2. import java.util.Scanner;
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.         Scanner scan=new Scanner(System.in);
  7.         System.out.println("Введите свое сообщение !!");
  8.         String text = scan.nextLine();
  9.         int i = text.indexOf(".");
  10.         System.out.println("ВОТ ВСЕ СИМВОЛЫ И ИХ КОЛИЧЕВТО:"+i);
  11.  
  12.     }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement