-
Write a program that calculates and prints the bill ?
write a program that calculates and prints the bill for Viti Telephone Company. The company offers two types of services: regular and premium: its rate very depending on the type of service.
The rates are computed as follows:
Regular Service
$10.00 plus first 50 minutes are free.
Charges for over 50 minutes are $0.20 per minute
Premium Service -
Write c++ program that read 10 numbers
1-write c++ program that read 10 numbers and print their sum, average, maximum, and minimum.
2-write a program that finds all number, dividable by 3 or 4 ranges from 1 to n .
3- write a program to calculate n! where n! =n * (n-1) * (n-2) * ...*(2) * (1).
-
Write c++ program that read 10 numbers
Write c++ program that read 10 numbers using while statement and print their sum, average, maximum and minimum ?
-
Basic program for banking in C++.
A program which includes account no.,user info,ID,PASS-WORD,user profile.
-
What is meant by class space and object space (with regards to memory) in c++?
I am a slow learner so i would like to have answers that are simple in words but brief.
-
-
Acrobat Plug-in getting triggered automatically
HiI am new to this site and have no idea where to post this question. I will really appreciate if someone can help me solve this problem. I am developing an acrobat plug-in for Acrobat professional 9 which will export all annotations in original document into an xfdf document.The plug-in must get triggered on saving the original document after creation of annotation.For this I captured before save...
-
C++ open ended experiment
The objective of this open ended experiment is to develop an ISE DEPARTMENT INFORMATION SYSTEM application using C++. The primary emphasis of the experiment is to understand and gain knowledge of principles of object oriented programming concepts so as to apply these concepts in implementing real world problems. Students should take this work seriously as these efforts will be useful for developing...
-
C++ programming function help
I'm having some trouble trying to program these problems and putting them into the main function. Please help me by giving some advice or website that offer good information for me.1. Write a function that accepts a string of characters from a user and displays the string one word per line.2. Write a function that accepts a string of characters, then output all the characters of the string in a reversed...
-
Use of C++ in Daily Life
Do you agree or not that "Object Oriented Programming basic paradigms like Abstraction, Encapsulation, Aggregation, Composition, Inheritance, Polymorphism, Templates etc are based and works in a same way as human thinks and behave in our daily life? Justify your answer with very precise and to the point reasons.
-
STL - Vector
What is the context of one and two after the following frsgment of code is executed?vector one(7, string("one"));vector two(one.begin() + 2, one.end()-3);
-
Diff betweeen static and local
In the below prog,node * q is local to a function add() but it acts as static .how?#includeusing namespace std;class ll{public: struct node{ int data; node *link; }*p;ll(){p=NULL;}int add(int x){ node *q,*r;if(p==NULL){ r=new node; r->data=x; r->link=NULL;q=r; p=q;}else{r=new node;r->data=x;r->link=NULL;q->link=r;q=q->link;}return 0;}void display(){ node *q; q=p;while(q!=NULL){cout
-
Plz explain following program
In the below program ,in function add() node * q is local but it acts as static ie I mean it works correctly how is it possible?#includeusing namespace std;class ll{public: struct node{ int data; node *link; }*p;ll(){p=NULL;}int add(int x){ node *q,*r;if(p==NULL){ r=new node; r->data=x; r->link=NULL;q=r; p=q;}else{r=new node;r->data=x;r->link=NULL;q->link=r;q=q->link;}return 0;}void display(){...
-
Reference Type
Define reference types with example
-
C++ Multiple Inhiretence
Why multiple inheritance is supported in C++? What is reason?
-
DLL Application
What are DLLs? How they are used in the applications?
-
Supplementary problem
you are tasked by your teacher to help her in the computation of your grade for preliminary period. the grade will computed based on the following formula.CRA=summation of all the quizzes, recitation,board works,assignments,and other requirements.prelim grade= (Cra*2+major exam)*60+40(total CRA)*2+major examthe program will return a letter grade based on the given conditionsletter grade score...
-
-
What is psychic windows in relation to VC++?
this question is related to windows programming using VC++
-
CPP Objects
How are objects passed in CPP?
C++ Interview Questions
Ans