Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
Favorite Tags

13 Posted Topics

Member Avatar for TMD

Ok I have a program that uses HTML to get some values from a user using a form and then it is passed into a javascript function that does some calculations with these numbers and creates a new variable name. What I need help with is that I want to …

Member Avatar for broj1
0
1K
Member Avatar for amroto

I don't know for sure what kind of calculator you are using but if it is a [B]TI version [/B]this will work in your program it should ask for your inputed numbers then save them... example: [code][LIST=1] [*]Prompt x, y [*]x+y→e [*]disp e [/LIST][/code] [B]disp e[/B] makes it display e …

Member Avatar for gbantsi_2
0
140
Member Avatar for CE Student

I think I have that assignment done lmao here let me look. what is it supposted to be saved as?

Member Avatar for ivailosp
0
227
Member Avatar for RatherBeInVegas

Yes you could use rand in time.h to create randomness and say if it is a range from a certain number produced by rand it would output one sentence then another if it equaled something else.

Member Avatar for RatherBeInVegas
0
202
Member Avatar for TMD

I can't seem to figure out why it keeps repeating level one anyone got a suggestion on how to fix it? [CODE=cplusplus]#include <iostream.h> #include <stdio.h> #include <windows.h> #include <stdlib.h> #include <conio.h> #include <ctype.h> int mx=14; int my=1; int i, j; char direction = ' '; char facing = 'S'; char …

Member Avatar for ivailosp
0
363
Member Avatar for jiah

hehe I am doing the same thing... here is a link to my source code....it all works except for some reason it keeps repeating level one (I'd be greatly appriciative if you [or anyone] could find where it was looping and fix it). [URL="http://www.daniweb.com/forums/thread117258.html"]http://www.daniweb.com/forums/thread117258.html[/URL]

Member Avatar for TMD
0
527
Member Avatar for jimJohnson

well now it looks like you don't have anything to exit your loop and it keeps repeating... change your while loop to something like [CODE]while (x>=-1)[/CODE] I don't quite understand why you are asking for the height and width twice...

Member Avatar for Lerner
0
591
Member Avatar for TMD

my administrator at school blocked commands for command prompt so I can't use system pause or system color commands....anyone know a way around this?

Member Avatar for Joatmon
0
86
Member Avatar for nurulshidanoni

He initializes 'i' the first time in line 63 then he re-initializes it in line 85 just change the int in line 85 to like 'k' or something... should fix that problem. you are trying to assign the variable i two different values (C++ doesn't like that) if you just …

Member Avatar for nurulshidanoni
0
248
Member Avatar for Penguin506

I'm guessing that right here: [QUOTE]for (i = 0 ; i < SIZE ; i++) { list[i] = -10 + rand()%10;[/QUOTE] you didn't close your for loop with }

Member Avatar for Jim Larkin
0
269
Member Avatar for Trini89

first you might want to start out with something simple like what the cost of something is and have them input it...then save that and have them input what they payed then create a simple formula for what the difference is then output it to the screen and so on. …

Member Avatar for Lerner
0
106
Member Avatar for rmsv_sen
Member Avatar for Ancient Dragon
0
272
Member Avatar for TMD

ok I am making a maze for my school with gotoxy and getch and 2d character arrays I have 2 errors though when I am compiling it.. here's the source: [CODE=cplusplus]#include <iostream> #include <stdio.h> #include <windows.h> #include <stdlib.h> #include <conio.h> #include <ctype.h> using namespace::std; char moveR; char moveL; char moveU; …

Member Avatar for TMD
0
122

The End.