Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~752 People Reached
Favorite Tags
Member Avatar for s080072

i am required to program a remotely piloted vehicle (RPV) that will navigate a given terrain and determine the number of craters and their locations in that terrain.I have a skeleton program....need help finishing it.. [B][U]code:[/U][/B] [CODE]Position class class Position { private: int row; int column; public: Position(); void SetRow(int …

Member Avatar for hag++
-2
84
Member Avatar for s080072

5x5 MATCHING WORDS AND IMAGE Each time the user plays the game, the application should reshuffle a matching pair of ten words into the 5x5 Matrix. Include 5 pair of words and 5 pair of matching graphics. New Game button should terminate the current game and clear everything on the …

0
55
Member Avatar for s080072

[U][B]5x5 MATCHING WORDS AND IMAGE [/B][/U] Each time the user plays the game, the application should reshuffle a matching pair of ten words into the 5x5 Matrix. Include 5 pair of words and 5 pair of matching graphics. New Game button should terminate the current game and clear everything on …

Member Avatar for crazyhorse09
0
100
Member Avatar for s080072
Member Avatar for Shanti C
0
113
Member Avatar for s080072

when connecting computers in a private network, do you need a router? or all you need is a switch?

Member Avatar for Iridium
0
74
Member Avatar for s080072

write a gui program to compute the amount of a certificate of deposit on maturity.the sample data follows: Amount deposited 8000.00 Years 15 Interest Rate 7.75 [B]Hint: compute 8000.00(1+7.75/100)to the power of 15[/B]

Member Avatar for alpe gulay
0
85
Member Avatar for s080072

I have to write a program that asks the user to input a positive integer. It should than output a message indicating whether the number is a prime number.

Member Avatar for javaAddict
0
91
Member Avatar for s080072

import java.util.*; public class changemakerj { static Scanner console=new Scanner (System.in); static final double PRICE = 10.50; public static void main (String[] Args) { double quantity,tprice,amtpaid,change1,chg$10,chg$5,chg$2,chg50,chg20,chg5,chg2,chg1; System.out.println("Enter the quantity:"); quantity=console.nextInt(); System.out.printf("Total price:$ %.2f.%n",tprice=quantity*PRICE,quantity); System.out.println(); System.out.println("Amount paid:$"); amtpaid=console.nextDouble(); System.out.println(); ; System.out.printf("Change:$ %.2f.%n",change1=amtpaid-tprice,amtpaid); System.out.println(); chg$10=(int)(change1/10); change1=change1 - (chg$10*10); System.out.println((int)(chg$10)+ ":$10.00"); chg$5=(int)(change1/5); System.out.println((int)(chg$5) …

Member Avatar for jasimp
0
150