Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #36.9K
~6K People Reached
About Me

Problem Solver

Interests
Football, Programming and troubleshooting
Favorite Forums
Favorite Tags
Member Avatar for Anu_6

public static void sentencesChecker(String essay) { int count = 0; int countcap = 0; int i , j; for ( i = 0; i < essay.length(); i++) { if (essay.charAt(i) == '.') { count++; } for ( char e= 'A'; e<='Z';e++) { if (essay.charAt(i)==e){ countcap++; } } } System.out.print("\n\t\t" + …

Member Avatar for anand01
0
279
Member Avatar for Rashee

How do i write a simple login page using Java programming language with the following components -JLabel -JTextField -JButton

Member Avatar for stultuske
0
279
Member Avatar for hemp31

Hi everyone, this is my first post here. I am new to Java. I understand it when I see it, but writting it is difficult for me. That is for now. I am building an app, which is going to be a quiz. There are 10 questions with fur answers …

Member Avatar for stultuske
0
274
Member Avatar for shahzrinsaid

Write a complete program that have two functions named CylinderVolume() and CylinderArea(). Both functions should receive diameter and height of cylinder as parameters. Each function should return the volume and area respectively to main program. Given formula: Cylinder volume, v=πr2h Cylinder area, a=2π2r+2πrh where π is pi, r is radius …

Member Avatar for <M/>
0
5K