/    Sign up×
Community /Pin to ProfileBookmark

could someone check over these ansers?

Im taking a intro to alogorithm design class. I was going over my study sheet for my first exam and just wanted to make sure my answers were correct before I study something that was wrong anyone have any input/suggestions/corrections i’d really appreciate it

Write a statement that declares an integer variable
int hoursWorked = 3 ;

Write a statement that declares a String reference variable

String name = “bob”;

Write a statement that declares a character variable storing an ‘a’

char letter = ‘a’;

Write a statement that declares a String object storing the character sequence “hello friend”.

String greeting = “hello friend” ;

Write a statement that declares a Scanner object that references the standard input stream.

Scanner stdin = newScanner(System.in);

Write a statement that reads an integer from the standard input stream (assuming it has been declared as in the last statement)
int hours = stdin.nextInt();

Write a single Java statement that outputs your first name onto the monitor (standard output stream) and your last name on the following line.

System.out.print(“Susan n Buck”);

Write a Java program to compute and display the product of two integers.

//Author: Susan Buck

public class product {

public static void main(String[]args) {

int A = 2 ;
int B = 3 ;
int calc = A * B ;

System.out.print(“The product of” + A + “and” + B + “is” + calc) ;

}
}

Write a Java program to compute and display the area of a rectangle.

//Author: Susan Buck

public class rectangle {

public static void main (String[]args) {

int topbot = 4 ;
int sides = 2 ;
int area = top * side ;

System.out.print (“The area of a triangle with a top and bottom of” + topbot + “inches, and sides of” + sides + “inches, has an area of” + area) ;

}
}

Write a Java program to compute and display the location of all occurrences of “ssi” in the word Mississippi.

//Author: Susan Buck

public class state

public static void main (String[]args) {

String count = “mississippi” ;
String searchString = “ssi” ;
int n1 = count.indexOf(searchString,1) ;
int n2 = count.indexOf(searchString, n1 + 2) ;

System.out.print(“The letters ssi occurs at positions” + n1 + “and” + n2 + “in the word Mississippi”)

}
}

to post a comment
Java

3 Comments(s)

Copy linkTweet thisAlerts:
@ray326Sep 24.2004 — That generally looks ok so here are some random comments. Some of the problems may be a bit tricky, e.g. the difference between a String reference and a String object. In one case the teacher may be looking for

String greeting = new String("hello friend");

rather than a simple initialization assignment.

Also keep in mind that object names begin with a lower case letter while class names are caplitalized. This is not a requirement of the compiler but it *is* the OO standard way of doing things. So A and B aren't really good names.

What if you didn't know ahead of time that Mississippi had exactly two occurances of "ssi"? That makes for a more "interesting" problem. ?
Copy linkTweet thisAlerts:
@buntineSep 24.2004 — Also, you will want to add some spaces in your string concatenation. Otherwise, it will look like this: "The product of2and3is5". You may want to use println instead of print as it will automatically place a newline character at the end of the string.
<i>
</i>System.out.println(“The product of ” + A + “ and ” + B + “ is ” + calc) ;

Regards.
Copy linkTweet thisAlerts:
@Khalid_AliSep 24.2004 — I am sure its a typo but still worth a pointer, this line below

[b]Scanner stdin = newScanner(System.in);[/b]

should be

[b]Scanner stdin = new Scanner(System.in);[/b]

to decalre an instance of an object you usually use "new" keyword.
×

Success!

Help @susancbk spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...