c program

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number. Object: C# Program Make a class EvenODD, which checks whether the number you inputted is an Even or Odd number. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_3 { class …

C# program which checks whether the number you inputted is an Even or Odd number Read More »

C# Program Calculating the Area of a Rectangle

C# Program Calculating the Area of a Rectangle

C# Program Calculating the Area of a Rectangle Object: Let us consider a Rectangle object. It has attributes such as length and width. Depending upon the design, it may need ways for accepting the values of these attributes, calculating the area, and displaying details. C# Projects. Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; …

C# Program Calculating the Area of a Rectangle 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 »

C++ Program one large chemical company pays its salespeople on a commission basis

C++ Program one large chemical company pays its salespeople on a commission basis

C++ Program one large chemical company pays its salespeople on a commission basis Object: One large chemical company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a salesperson who sells $5000 worth of chemicals in a week receives …

C++ Program one large chemical company pays its salespeople on a commission basis Read More »

Write a C++ program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous

Write a C++ program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous

C++ program that reads a temperature C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous Object: Write a program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous at the given temperature at sea level. …

Write a C++ program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous Read More »

Program that print the elements of the array in reverse order by using a pointer.

Program that print the elements of the array in reverse order by using a pointer.

Print the elements of the array in reverse order by using a pointer. Object: Write a Program that print the elements of the array in reverse order by using a pointer. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void main() {       int num[5],i;       …

Program that print the elements of the array in reverse order by using a pointer. Read More »

Program that calculate the factorial value of any number by using functions

Program that calculate the factorial value of any number by using functions

Program that calculate the factorial value using functions Object: Write a function to calculate the factorial value of any integer entered through the keyboard. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; int fac(int num); void main() { int nu; cout<<“\nEnter Any Number: “; cin>>nu; cout<<fac(nu); getch(); } int fac(int …

Program that calculate the factorial value of any number by using functions Read More »