A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/premierconsult/public_html/index.php:65)

Filename: core/Input.php

Line Number: 408

A PHP Error was encountered

Severity: Warning

Message: session_start(): Cannot send session cookie - headers already sent by (output started at /home/premierconsult/public_html/index.php:65)

Filename: Session/Session.php

Line Number: 143

A PHP Error was encountered

Severity: Warning

Message: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/premierconsult/public_html/index.php:65)

Filename: Session/Session.php

Line Number: 143

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/premierconsult/public_html/index.php:65)

Filename: controllers/Questions.php

Line Number: 330

برنامج بلغة ال Java يقوم بحساب عدد الكلمات والأحرف في جملة

برنامج بلغة ال Java يقوم بحساب عدد الكلمات والأحرف في جملة

  • 2022-02-06
  • hamzash
  • م496
  • مشاركة مميزة


اكتب برنامج بلغة ال Java وظيفته حساب عدد كلمات وأحرف الجملة المدخلة من قبل المستخدم وذلك باستخدام تابع لحساب عدد الكلمات وتابع لحساب عدد الأحرف

الأجوبة

import java.util.*;
public class Text {
	public static void countWords(String s){
		  int wordCount = 1;
		  for (int i = 0; i <s.length(); i++) {
	            if (s.charAt(i) == ' ') {
	                wordCount++;
	                }}
		  System.out.println("wordCount = " + wordCount);
	}
	
	public static void countchar(String s){
		int charCount = 0;
	for (int i = 0; i <s.length(); i++) {
		if (s.charAt(i) != ' ') {
			charCount++;
		}}
	System.out.println("charCount = " + charCount);
	}
	
	public static void main(String[] args) {
		Scanner in=new Scanner(System.in);

	    System.out.println("Enter a text");
	    String data=in.nextLine();
		
	    countWords(data);
	    countchar(data);
	    
    }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...