C++..

Write a program that continually calculates the cube of a number until the user enters a number that is divisible 2

Write a program that continually calculates the cube of a number until the user enters a number that is divisible 2

C++ Program that continually calculates the cube of a number until the user enters a number that is divisible 2 Object:  Write a program that continually calculates the cube of a number until the user enters a number that is divisible by both 2 and 3. Expected Output: Enter a number: 3 Cube of 3 …

Write a program that continually calculates the cube of a number until the user enters a number that is divisible 2 Read More »

Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university.

Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university.

Program in which user enter his NTS and FSc marks and your program will help student in selection of university.   Object: Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university. Based on these marks Student will be allocated a seat …

Write a C++ program in which user enter his NTS and FSc marks and your program will help student in selection of university. Read More »

Write a c++ program that stores monthly rainfall amounts in an array.

Stores monthly rainfall amounts in an array. Object: Write a program that stores monthly rainfall amounts in an array. The program then displays the monthly rainfall amounts, the total annual rainfall amount, the average rainfall amount, the highest rainfall amount, or the lowest rainfall amount First get the rainfall amounts for the 12 months. Example: …

Write a c++ program that stores monthly rainfall amounts in an array. Read More »

Write a function which receives a float and an int from main ( ), finds the product of these two and returns the product which is printed through main ( )

Function receives a float and an int from main ( ) finds the product of these two and returns the product which is printed through main ( )

Function receives a float and an int from main ( ), and product of these two Numbers Object: :  Write a function that receives a float and an int from main ( ), finds the product of these two and returns the product which is printed through main ( ). C++ projects for beginners with …

Function receives a float and an int from main ( ) finds the product of these two and returns the product which is printed through main ( ) Read More »

Using function, write a complete program that prints your name 10 times. The Function can take no arguments and should not return any value

Using function, write program that prints your name 10 times. The Function can take no arguments and should not return any value

Using function, write a complete program that prints your name 10 times Object: Using function, write a complete program that prints your name 10 times. The Function can take no arguments and should not return any value. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void nam(); void main() { …

Using function, write program that prints your name 10 times. The Function can take no arguments and should not return any value Read More »

Write a program that generates a table of any number

Write a program that generates a table of any number

Program that generates a table of any number   Object: Write a program that generates a table of any number. C++ Projects. Code: #include<iostream> #include<conio.h> using namespace std; void main() { int no,i,tab; cout<<” :Table Generator:\n\n”; cout<<“Enter Any Number: “; cin>>no; for(i=1;i<=10;i++) { tab=no*i; cout<<no<<” * “<<i<<“= “<<tab<<endl; } getch(); } #include<iostream> #include<conio.h> using namespace …

Write a program that generates a table of any number Read More »

Write a Bio Data program that Input Name, Father Name, college name, Age etc. and Print given data?

Write a Bio Data program that Input Name, Father Name, college name, Age etc. and Print given data?

Bio Data program that Input Name, Father Name, college name, Age etc. Object: Write a Bio Data program that Input Name, Father Name, college name, Age etc. and Print given data? C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> #include<string> using namespace std; void main() { int age; float hight; string name,f_name,email,cont,uni,dep,colg; cout<<“\n\t\t———- …

Write a Bio Data program that Input Name, Father Name, college name, Age etc. and Print given data? Read More »