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
Member Avatar for Trevor_4

<!doctype html> <html lang="en-US"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Empathy</title> <link href="template.css" rel="stylesheet" type="text/css"> </head> <body> <div class="container"> <header> <a href=""> <h4 class="logo"> <img src="page-1_2.png" width="113" height="28" alt=""/> </h4> </a> <nav> <ul> <li><a class="Abouth-Empath" href="empathy.html#about" >About Empath</a></li> <li><a class="How-It-Works" href="empathy.html#How">How It Works</a></li> <li> <a class="Contact" …

Member Avatar for NetJunkie
0
310
Member Avatar for Trevor_4

i need to get a out put of the array in my code that will display every time the counter counts and has to be linked to a random number. import flash.utils.Timer; var color: Array = ["red", "green", "blue", "yellow"]; var rand: Number; var counter = 0; var myTimer: Timer …

Member Avatar for Trevor_4
0
155
Member Avatar for Trevor_4

i am having a problem with java script and need to know how i can convert a integer inputted by the user to asterisks. stipulations i have to use a window prompt dialog box and print the asterisks on the page in a paragraph.. i just need help changing the …

Member Avatar for diafol
0
270
Member Avatar for Trevor_5

import java.util.Scanner; public class Program2{ public static void main (String []args) { Scanner input = new Scanner (System.in); int[] data = new int[256]; int inAscii; char inChar; String inString= input.nextLine(); for (int i = 0; i < inString.length();i++) { inChar=inString.charAt(i); inAscii=(int) inChar; data[inAscii]++; } for (int i= 1; i<256; i++){ …

Member Avatar for Trevor_5
0
246
Member Avatar for Trevor_4

<a href="#"> Home </a> <a href="#"> Video1 </a> <a href="#"> Advanced Warfare </a> <a href="#"> Video 2 </a> </nav> those are the nav buttons i have and i want video 2 and advanced warfare to be active and click as to show images and a short video i have and …

Member Avatar for tdrosiadis
0
126
Member Avatar for Trevor_4

import java.util.*; public class temp { public static void main (String[] args) { //Declear variables int LowT=0, HighT=0, high, low, RangeT=0, zip, k, d, i; double Avg, HighAvg=0, LowAvg=0, RangeAvg=0; //New Scanner Scanner input = new Scanner(System.in); //Informs user on what the program does System.out.println("This program calculates highest, lowest and …

Member Avatar for stultuske
0
160
Member Avatar for Trevor_4

//Trevor Potter // Nov. 11,2014 import java.util.*; public class student { public static void main (String [] args) { int[] student= new int [20]; int[] exam1= new int[20]; int[] exam2= new int[20]; int[] exam3= new int[20]; int[] avg= new int[20]; int i=0; Scanner input = new Scanner(System.in); for(i=0; i<=19; i++){ …

Member Avatar for Trevor_4
0
117
Member Avatar for Trevor_4

i need help trying to set a program that will have three arrays one for number of students anothe rfor 3 exams and final the average of all the grades can any one help

Member Avatar for diafol
-2
172
Member Avatar for Trevor_4

how can i get this program, to tally the number of grades above 90 , between 80 and 89 and etc import java.util.*; public class grades {import java.util.*; public class grades { public static void main(String[] args) { Scanner input = new Scanner(System.in); int i, n; double sum= 0, score=0 …

Member Avatar for jstfsklh211
0
103
Member Avatar for Trevor_4

double hours=0, rate=0; double Federaltaxes, Ficataxes, Statetaxes; double netpay=0, grosspay=0, totaltaxes; if (hours <= 40){ System.out.println("how many hours did you work"); hours= input.nextDouble(); System.out.println("what is the rate you get paid"); rate= input.nextDouble(); grosspay= hours * rate; System.out.println("the gross pay is:" + grosspay); Federaltaxes= grosspay * .20; System.out.println("Federal taxes are:" + …

Member Avatar for oussama_1
0
88