EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

1)Reverse each word in a sentence

 

input: java is fun

 

output:avaj si nuf

 

import java.util.*;

 

class ASC

{

public static void main(String args[])

{

String a=”java is fun”;

 

String b[]=a.split(” “);//b[java–>0 is–>1 fun–>2]

 

for(String c:b)//c=fun

{

StringBuilder s=new StringBuilder(c);//(fun)

System.out.print(s.reverse()+” “);//avaj si nuf

}

 

 

}

}

———————————–

2)Count words in a sentence

 

input: java is easy

 

output:3

 

import java.util.*;

 

class ASC

{

public static void main(String args[])

{

String a=”java is fun”;

 

String b[]=a.split(” “);b[0–>java 1–>is 2–>fun)

 

System.out.println(“count=” +b.length);

}

}

 

————————————-

3)Replace a word in a sentence

 

input=I like java

 

output=I like python

 

import java.util.*;

 

class ASC

{

public static void main(String args[])

{

String a=”java is fun”;

 

String b=a.replace(“fun”,”easy”);

System.out.println(b);

}

}

Java example programs for Reversing each word

Leave a Reply

Your email address will not be published. Required fields are marked *

EduLearn - Online Education Platform

Welcome to EduLearn!

Start learning today with our wide range of courses taught by industry experts. Gain new skills, advance your career, or explore new interests.

Browse Courses

Popular Courses

[Course Image]

Introduction to Programming

Learn the fundamentals of programming with Python in this beginner-friendly course.

12 Hours Beginner
[Course Image]

Data Science Essentials

Master the basics of data analysis, visualization, and machine learning.

20 Hours Intermediate
[Course Image]

Web Development Bootcamp

Build modern websites with HTML, CSS, JavaScript and popular frameworks.

30 Hours Beginner
[Course Image]

Digital Marketing Fundamentals

Learn SEO, social media marketing, email campaigns and analytics.

15 Hours Beginner
Educational Website Footer