Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~19.9K People Reached
About Me

Programming student who isn't so great at programming, but stubborn enough not to change my major.

Interests
Programming, software development, Linux/Unix, networking, underwater basket weaving...
PC Specs
HP xw8400 workstation: twin Intel Xeon ARK processors, quad core @ 2.67 GHz, 16.00 GB of RAM, NVIDIA…

22 Posted Topics

Member Avatar for TObannion

I'm making a series of webpages, and need to control top level navigation through an external JS file. I can't even think of how to begin to code this. Does each page need to be assigned an array index? Then how do I hide the link to the current page?

Member Avatar for TObannion
0
158
Member Avatar for TObannion

I am trying to create a dtd that emulates a car dealership. It sells trucks, sedans and hatchbacks, as can be seen in my dtd. The dealership would keep track of how many doors and wheels each vehicle has as well as the model and year in addition to how …

0
126
Member Avatar for TObannion

I am trying to make a page that displays an image, and then utilizes a group of radio buttons and an apply button to perform effects on the image in the `<div>`tag . It is using the show(), hide(), Toggle(), Fade In(), Fade Out(), Fade To(), Slide Down(), Slide Up(), …

Member Avatar for TObannion
0
261
Member Avatar for TObannion

I am supposed to use a jquery plugin to fill in some text fields. My professor is almost completely unresponsive about it when I ask him for help. Using the pickadate Jquery plugin, add a date picker and time picker to two <input> fields. <!doctype html> <html> <head> <title>Exercise 11A</title> …

Member Avatar for rproffitt
0
278
Member Avatar for TObannion

So I'm trying to make a script that prompts for two strings, then searches the second string to see if it contains the first using a function triggered by a button. Something is off with my comparison. Let me know what I am doing wrong. <!doctype html> <html> <head> <meta …

Member Avatar for mblan180131
0
184
Member Avatar for TObannion

I'm trying to do some mouseover things with images. I thought that I had everything exactly as it should be but the page can't seem to access the images I'm asking it to. The idea is that the page has three pictures. One of a happy baby, a dog, and …

Member Avatar for TObannion
0
364
Member Avatar for TObannion

I've been trying to debug this for a couple of days...cannot see why it performs the way it does. Help is much appreciated. Forgive me about how lengthy the assignment details are. -Create a function named whileTest(). Inside the function, create a variable named number and assign it a value …

Member Avatar for TObannion
0
299
Member Avatar for TObannion

I've been away from programming for a bit, and I never really learned pointers that well. What I'm trying to do now is code from a model. Here's a link to the model: [Click Here](http://s1042.photobucket.com/user/AlanTuring11/media/123_zpsx47kycfm.png.html?filters[user]=144321721&filters[recent]=1&sort=1&o=0) My problem is that my output is not changing when I enter events. The program …

Member Avatar for David W
0
301
Member Avatar for Shayan_1

Here this page might help with your question and perhaps some more down the line: [Click Here](http://www.tutorialspoint.com/cplusplus/cpp_operators.htm) As Suzie999 stated, && is use like this: if a is greater than b **AND** b is greater than c; print c, print b, print a the "cin" line above the if statement …

Member Avatar for Shayan_1
0
207
Member Avatar for TObannion

I'm working on a project for a tic tac toe game. I'm working on this with a partner (assigned) but he has kind of fallen by the wayside. Here is the assignment: Filenames: ttt.h, ttt.cpp, tttmain.cpp Your second project will be completed with a partner. For this project, you will …

Member Avatar for tinstaafl
0
2K
Member Avatar for Dave Sinkula

I know I'm new here and to C++ in general, but as a BEGINNER I found Jumping into C++ by Alex Allain to be pretty in depth on the beginner stuff. For some it may be too elementary, but for others, (like me), it could be just what you need …

Member Avatar for shahidali6
11
10K
Member Avatar for TObannion

Okay, here I am again. I searched the forum and found the posts that I need to solve this password validator, but I'm not putting it together in my head correctly for some reason. I haven't started the isUpper, isLower, and isDigit functions, but I'm going to do those next. …

Member Avatar for ROMEO VINEET
0
3K
Member Avatar for TObannion

So, I'm working on an assignment. It involves a read-in text file and the program itself. When I run it I get what my teacher would call "garbage" in the output. Here is the info from the .txt: Mike 1200 John 350 Jen 1500 Tara 700 Michelle 2000 Kevin 500 …

Member Avatar for TObannion
0
260
Member Avatar for TObannion

So I am making the menu for a rock paper scissors game, and it's working other than the quit function in the main menu. I know that it's because the blank space used for enter is considered a string, but the assignment requires that I use enter to quit from …

Member Avatar for vegaseat
0
204
Member Avatar for TObannion

So I wrote this program this evening...it was working just fine and when I started trying to tweak the display I started getting syntax errors on my global elif's. Here's my code, somebody please tell me what is going on. # Rock Paper Scissors, Project 2, Tadd O'Bannion import random …

Member Avatar for TObannion
0
251
Member Avatar for bidisha_1

I would suggest start with a loop to iterate through the numbers and add them together. Something like: int sum=0; //variable to accumulate the numbers int natNum=1; while(natNum<=10) //while loop continually iterates to your limit. { sum=sum+natNum; //accumulates number into the sum ++natNum; //increments number by 1 } That's the …

Member Avatar for rubberman
0
110
Member Avatar for TObannion

So I was given a stack program to convert from int to char. I converted it but the output is...not expected. Wanting someone to point me in the right direction. I will post the header and driver program of the int stack and then the header and driver of the …

Member Avatar for NathanOliver
0
329
Member Avatar for Mahbeezzy

For determining which numbers in the range are even, a modulus would work. As for `std::accumulate`,Most C++ courses now are `using namespace std;` I believe. What is your code so far? if you don't post what you've tried, people tend to think you want them to do your homework for …

Member Avatar for TObannion
0
191
Member Avatar for TObannion

Here is my encryption program. The decryption program is what is giving me some trouble. Here is the description of the first part: # encrypt.py - ENCODE MESSAGE AND WRITE TO FILE # # initialize a cipher list to store the numeric value of each character # input a string …

Member Avatar for TObannion
0
377
Member Avatar for TObannion

So here is my WORKING code. My problem lies in the output when I enter "0" or "00" for the hour in 12 midnight. No matter what it still outputs a 0 for midnight. (I want it to convert it to standard time.) I know it is something easy that …

Member Avatar for TObannion
0
236
Member Avatar for TObannion

So here is another assignment I am working on. I can't get to my schools computer lab due to family, job, etc. Here is the assignment: Structs file name: lab2.cpp 1. (3 points) Define a struct, named FullName, that contains the following fields: lastname - a string firstname - a …

Member Avatar for rubberman
0
360
Member Avatar for TObannion

So here is my assignment: File name: project1.cpp You work for the Jet Propulsion Laboratory. They want you to write a program that will take a two-dimensional array containing the digitized representation of a picture of the night sky and locate the stars on it. The array elements are integers …

Member Avatar for TObannion
0
191

The End.