No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
26 Posted Topics
[CODE]#include <conio.h> #include <graphics.h> #include <stdlib.h> #include <stdio.h> void main (int) { int gdriver=DETECT,gmode,errorcode; //Requesting auto-detection. int midx,midy,x; //Initializing graphics and local variables. initgraph(&gdriver,&gmode,"d:\\bc3\\bgi"); //Reading result of initialization. errorcode=graphresult(); if(errorcode!=grOk) //An error occurred. { printf("Graphics error occurred : %s \n",grapherrormsg(errorcode)); printf("Press any key to stop : "); getch(); exit(1); //Terminate … | |
Hi every one I am facing alittle problem I have a drop down list that enable the user to select a number when the user select anumber another drop down list will appear i write the code and it work with me but when i put it in a multi … | |
hi every one I need your help My project is about on line travel agent but I have a problem in doing dynamic page I mean in my project I allow the user to enter multiple number of cities what I need is if the user enter for example 3 … | |
hi every 1 I am working at my graduation project using ASP. net and I want to know if it is possible to search my data base to get specific data and if it so could you tell which is the best way to do so and if you know … | |
hi every one i am trying to create shopping cart working with VB & access when i wrote add function an error occur i do not know how to solve"Syntax error in INSERT INTO statment" it please help me to solve the problem a shot screen is attached contain page … | |
hi I need some help in my research it is about the query processing I need some help to get some information about it I have already search at Google and didn't found a lot of information please help me | |
Hi every 1 i have this question and i am looking for it answer please help me why every conflict serializable schedule is also view serializable | |
hi please i need your help i need an idea of how to encrypt text in file text using c++ Thanks alot | |
hi every1 i have this code which is delete a node in the graph but there is 5 errors and 1 warning I need u to help me with this errors [CODE]#include<iostream> using namespace std; template<class TYPE> struct Vertex; template<class TYPE> struct Arc; template<class TYPE> struct Vertex { Vertex<TYPE> *pNextVertex; … | |
Write a menu driven program that manipulates a list of students and has the following options: 1- Build list from file 2- Build list from keyboard 3- Print list Use the standard list ADT to build the student list. Student information are (name, level, ID) information please help with this … | |
Hi every 1 i need to have some application of the priority queue thanks :cool: | |
hi every 1 i wanna to ask about sigl and double linked list *what is the advanyages and desadvantegs of the double linke list *when we use the double and when we use the single thanks | |
[CODE]#include <vector> #include <string> #include <iostream> #include <windows.h> using namespace::std; class customer{ private: char type; double balance; public: void check_type(){ if(type=='p'){ if (balance<1000) { balance=balance-2;} else if (balance<1000) { balance=balance-5;} } } }; class Transactions{ private: char type; double amount; int houre; int minute; public: Transactions(char t,double a,int h,int m):type(t),amount(a),houre(h),minute(m) … | |
HI I KNOW I HAVE ASKED SO MUCH BUT PLEASE DO NOT IGNORE ME I HAVE APART OF QUISTION THAT I COULDNOT COMPLETE IT HERE IS IT Then create an int specialization and in it add a function that returns the sum of all elements in the DoubleSubscriptedArray HERE IS … | |
hi every please i need your expriment to help to complete this code my problem is with three functions i think so there is no errors the funcions are display account...>does not work just display name transection...>it count jyst one time standing order...>i do not know how to compare the … | |
hi every 1 please i need your help to complete my code cause i could not complete it it is for a bank wich . Design it so it can be used by the bank’s staff. It should enable the following: o Opening a new account for a customer o … | |
Additions to Phase 1 Transactions Each account stores transactions information (the type of transaction (e.g. withdrawal, deposit …etc), the amount, the time of transaction and any additional information you think is important). When any transaction occurs this transaction is recorded in the account. So each account has more than one … | |
Implement a system for a bank. Design it so it can be used by the bank’s staff. It should enable the following: o Opening a new account for a customer o Closing an account o Displaying all accounts An Account o Contains the name of the customer o Contains the … | |
hi every1 i want to ask what wrong with my program it all work allright just the zakat function when i run the program the output is garpege here is the code [CODE] #include <iostream.h> #include <conio.h> #include <stdlib.h> class Customer { private: char name[20]; char address[30]; char city[20]; char … | |
Re: hi i think you should do it like that [code]#include <iostream> using std::cout; using std::cin; using std::endl; int main () { int number1; int sumeven=0; int sumodd=0; int evencounter=0; int oddcounter=0; int counter; cout<<"Please enter 10 integers: \n"; for( counter=1; counter<=10; counter++) { cin>> number1; if (number1 < 0){ cout<<"One … | |
hi plzzz i need ahelp to know what rong with this program the problem is in the display function the code [code]#include <iostream.h> #include<string.h> class Employee { private: char number[55], name [55], salary[55]; public: Employee(); ~Employee(); void set(); void display (); }; Employee::Employee() { cout<<"The constructor called"<<endl; } Employee::~Employee() { … | |
please help me to write this program Ihave make one closed to it but I could not do it as what it says here is the problem and my solution: This is the program Write a program that outputs a telephone bill, given information on telephone calls made by the … | |
Write program that reads some information of 10 students (name [max 15] , level number , #of points , #of hours , GPA , student id ). These fields should be filled for each student by user except GPA. The GPA (max: 5) should be calculate it by function that … | |
[SIZE=4][COLOR=DimGray]please I need your help inthis program because I do not under stand what does he want and I didn't under stand the array so please help me[/SIZE][/COLOR] Write a function named "eliminate_duplicates" that takes an array of integers in random order and eliminates all the duplicate integers in the … | |
please where is the error in this code doesn't run [code] #include<iostream> #include<cstdlib> using namespace std; int main() { int ages[1000]; int size=1000; int i,a,b; for( i=0;i<size;i++) { ages[i]=rand(); for( a=1;a<size;a++) { for( b=size-1;b>=a;b--) { if(ages[b-1]<ages[b]) { i=ages[b-1]; ages[b-1]=ages[i]; ages[b]=i; } } } } cout<<ages[i]; return 0; } [/code] Code … | |
hi every 1 i am new and Ihope that you would help me I have to write a program that will allow you to enter if you enter the password without using strcmp function and here is my try [code] #include <iostream> #include <cstdio> using namespace std; bool password(); int … |
The End.