Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
26% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
8
Posts with Downvotes
4
Downvoting Members
7
3 Commented Posts
0 Endorsements
Ranked #2K
~15.5K People Reached
Favorite Tags

23 Posted Topics

Member Avatar for EngSara

Hello, I am trying to make a page which has some pictures and the user can view more pictures by clicking an arrow to scroll horizontally. So, how I can do the horizontal scrolling?. Thanks,

Member Avatar for aspproject
0
109
Member Avatar for EngSara

Hello.... I am running a C++ program that takes an N array and reads a from a file. One requirement of this project is that it returns an elapsed time of each function so the function efficiency can be calculated based upon an input. I am attempting to implement the …

Member Avatar for menauman
0
6K
Member Avatar for EngSara

Hi, I need to store each path in a tree as a row in a two dimensional array of size #of paths x N. I couldn't find the appropriate indexing scheme for the array. Any ideas would be appreciated. Thanks,

Member Avatar for vijayan121
0
2K
Member Avatar for EngSara

Hi, When I run my program it crashes and a message that an asseration failure happened appears. when I debug the program it points to following: [CODE]for ( i = 0; i < delta*d; ++i) delete [] o[i]; delete [] o;[/CODE] I create this array as follows: [CODE] int **o; …

Member Avatar for shijobaby
0
183
Member Avatar for thedoodler
Member Avatar for Kanoisa
0
1K
Member Avatar for computerdummy30

Your assigment operation is wrong . You should write it this way: [CODE]if(side==1) socost=0.89;[/CODE] You initialize socost as an integer so you shouldn't assign a string to it. To display the order you can do the following: [CODE]if(side==1) {cout<<"French Fries: 0.89"<<endl; socost=0.89; }[/CODE] And do the same for the rest …

Member Avatar for EngSara
0
89
Member Avatar for Volestar

the array has positions from 0 to size-1. so if u declare operation[1] then the array have one element which is operation[0] not operation[1].

Member Avatar for WaltP
0
323
Member Avatar for riotburn

I think the problem is that ur code is entering an infinite loop in the I_simpson function.. because in the for loops u didn't put a condition like (i<n-1) for example . also the same thing for the other for loop u just put n. the value of n is …

Member Avatar for jazz_vill
0
420
Member Avatar for wtvrinc

Could u plz show us the format of the file? also when u are reading the file u declare the variable as char or some thing else?

Member Avatar for kesh1000
0
89
Member Avatar for cwarn23

if u use separate loops .. then u are only saving the last value of e in the first loop.

Member Avatar for cwarn23
0
119
Member Avatar for AmigaCarolena

[CODE]cout << "enter number 1": << endl;[/CODE] the " should be after : not before. [CODE] total salesprice (after salestax) = sales_price + tax[/CODE] u didn't declare the variable total and u can't name variable like this don't put spaces and ( ) in the name of the variable.. u …

Member Avatar for EngSara
-2
141
Member Avatar for AmigaCarolena

In the cout statements u don't but ; before << operator. for example if u want to display a variable between text u write it this way: [CODE]cout << "Your 2005 Ford Bronco costs "<< cost << " $ after sales_tax"; [/CODE]

Member Avatar for gnarlyskim
0
336
Member Avatar for corby

Try this for the Draw() function: [CODE]for(int i=0;i<width;i++) {cout<<"%"; for(int j=0;j<lenght-2;j++) { if(i==0 || i==width-1) cout<<"%"; else cout<<"@"; } cout<<"%"<<endl; }[/CODE] In the set functions i don't thing u need to declare the variables already declared in the class..

Member Avatar for EngSara
0
144
Member Avatar for zhaviere
Member Avatar for mrnutty
0
2K
Member Avatar for gertails

[code]#include <iostream> #include <fstream> #include <sstream> #include <string> #include <stdio.h> #include <stdlib.h> #include<cmath> using namespace std; int main() {int d; char mon[10]; cout<<"Enter the date"<<endl; cin>>d; cout<<"Enter the month:"<<endl; cin>>mon; if(( (0 == strcmp ("dec",mon)) && ( d>=22 && d<=31)) || ( (0 == strcmp ("jan",mon)) && ( d>=1 && …

Member Avatar for Nick Evan
-2
106
Member Avatar for pamelaanne05
Member Avatar for EngSara
0
141
Member Avatar for ccie007
Member Avatar for ccie007
0
164
Member Avatar for bbabarajj
Member Avatar for bbabarajj
0
2K
Member Avatar for EngSara

Hi, I want to write a java program that send a file through cable to another PC automatically in specefic time.. I don't know which cable to use(crossover or usb) and how to read and write from the serial port.. i tried to do it in VB(with help from some …

Member Avatar for masijade
0
117
Member Avatar for EngSara

Hi... [code]// read the whole file through one line at a time while(getline(in, line)) { // check does this line start with the tag string 'SER(FIT):' ? // note: there must be no tabs/spaces at the start of the line if(0 == line.find(tag)) { // yes it does, then use …

Member Avatar for Salem
0
87
Member Avatar for EngSara

hello .... I need a java code that convert from eqn ( or bench ) format to verilog format.... Does anyone has an idea?! Thanks in advance....

Member Avatar for masijade
0
140
Member Avatar for EngSara

hello... I need a c++ ( or java ) code that convert from eqn ( or bench) format into verilog format... Did anyone has an idea?!! Thanks in advanced......

Member Avatar for Sky Diploma
0
84
Member Avatar for EngSara

hi.... I need a c++ code that read a log ( Contains numbers and letters) file and compute the average.... This is a sample of the log file.... ********************************************************** Input vector # 99: OUTPUT: 0 1 0 1 0 **** Vdd = 1.8 **** Tclk = 0.1 **** SER(FIT): 1.1e-002 …

Member Avatar for EngSara
0
260

The End.