Marketplace

Related Articles

More

Related Categories

Recently Added

More

Join StudyUp.com Today

It's always free and anyone can join!

Watch StudyUp Demo Video Now

You Recently Visited

Quick Writing Prompts

Mitchell Said:

Help with writing some psuedocode?

We Answered:

Sure, that approach should work.

Umm... But you probably need a while loop and a few other things in here. Also, the way you've explained how this is supposed to work is slightly nonsensical. Is this supposed to be translated to actual program code, or what? Whipping this up in Python should be the work of a few minutes.

EDIT:
*Sigh* You need a while loop in order to reprint the menu - otherwise it'll just run once. How about something like this (you didn't include anything about fuel either):

# Initialize
ammo = 5
fuel = 200
Choice = "0"

While Choice not "4" do:
Menu

# Menu
Method: Menu
print "Menu selection"
print "1 - Fire Weapon"
print "2 - Move Forward"
print "3 - Move Backward"
print "4 - Exit"
input Choice
if Choice == "1" Fire
if Choice == "2" Forward
if Choice == "3" Backward
End Method

# Fire Weapon
Method: Fire
if ammo > 0 print "How far away is the opponent?", input Distance
if ammo > 0 and (Distance > 0 and Distance <= 20) print "Opponent destroyed"
if ammo == 0 print "Cannot fire; out of ammo"
if ammo > 0 ammo--
End Method

# Move Forward
Method: Forward
print "Moving forward..."
End Method

# Move Backward
Method: Backward
print "Moving backward..."
End Method

Valerie Said:

Trapped on an island, three people...?

We Answered:

I would choose a master wood worker, so he could build a boat for me, a chef, to find some healthy foods for me so I would be able to survive until the boat is ready. And probably the engineer so he could maybe whip up some kind of temporary motor.

Debra Said:

Quick java code Question?

We Answered:

Hummmm i will

import java.io.*;
import java.util.*;
public class Test
{
public static void main (String args[]) throws Exception
{
DataInputStream dis=new DataInputStream(System.in);
System.out.println("Input a number : ");
double num=Double.parseDouble(dis.readLine());
double res = Math.pow(num,4);
System.out.format("The result of raising value to the fourth power %-10.3f%n",res);
}
}

if u need any answers regarding programming languages post u r query in http://cse1spot.blogspot.com/p/ad.html blog this is a number 1 blog for questions and answers regarding programming languages

Annie Said:

Can you read this and give me some advice?

We Answered:

Interesting prompt. Glad you took it and went somewhere with it. Whenever I see interesting prompts, I tend to mull them over before passing on from them without bringing my ideas to the page. So I commend you for taking the chance.

The writing isn't THAT bad, to be honest. It's ordinary. Nothing really pulled at me, and I saw everything coming. With that being said, I would suggest more detail and a heightened sense of emotion. Try to truly convey how the main character is feeling in an unusual way. Twist the story and really make it your own. And try to end with an unconventional ending..

Your grammar needs work, even though it didn't make me cringe (that bad). ... But.... That's always a skill that come with time and practice. Edit and have it revised and edited.. look up the mistakes you made and make a mental note for the future. It's simple (but important) for your growth as a writer.

Colleen Said:

For Whom the Bell Tolls--quick question..?

We Answered:

Perhaps you should focus on Hemingway's choice for his title, "For whom the bell tolls" which is part of a quote you can easily find: "Ask not for whom the bell tolls, it tolls for thee."
When you explore it, you find that in small towns, when a person dies, the church bell tolls, announcing his death. So, someone hearing this, would ask, "Who died?"
Now, when you examine the full quote, it is sobering, even a bit scary, isn't it? What feelings do it evoke in YOU?
It is an exclamation of the simple fact that we all must die sometime.
You might modernize it by finding a song title, "No one gets out alive" I think it is, by, I believe, the 60's-70's group, The Doors. (Not sure of this)

Daryl Said:

To Kill A Mocking Bird QUICK HELP NEEDED!?

We Answered:

who about people isolating themselves and being isolated and using boo radley as your example?

Discuss It!