Skip to main content

Problem Statement 1

Code it Up!

Write a program such that when the user. 

Use 1. Print Name.

Use 2. Print Address.

Use 3. Add two numbers.

Use 4. Program which takes three values from user and calculate average.

Use 5. Program which takes 5 subject marks from user. Calculate average of it. According to average display appropriate grade.

You can take help from below!

#include <iostream>
float add(int range = 2)
{
float num[range];
float result = 0;
for (int i = 0; i < range; i++)
{
std::cin>>num[i];
}
for (int i = 0; i < range; i++)
{
result += num[i];
}
return result;
}
float average(int range = 3)
{
float num[range] = {};
float result = 0;
for(int i = 0; i<range; i++)
{
std::cin>>num[i];
}
for (int i = 0; i < range; i++)
{
result+=num[i];
}
return result/range;
}
float get_marks(int range = 5)
{
float marks[range] = {};
float total;
for (int i = 0; i<range; i++)
{
std::cin>>marks[i];
}
for (int i = 0; i<range; i++)
{
total += marks[i];
}
return total/range;
}
char get_grades(float total = get_marks())
{
char grades[5] = {'A','B','C','D','F'};
int marks[4] = {70, 60, 50, 35};
if (total < marks[3])
{
return grades[4];
}
else if (total >= marks[3] and total < marks[2])
{
return grades[3];
}
else if (total >= marks[2] and total < marks[1])
{
return grades[2];
}
else if (total >= marks[1] and total < marks[0])
{
return grades[1];
}
else
{
return grades[0];
}
}
float get_temp()
{
float celcius;
std::cin>>celcius;
return celcius;
}
float c_to_f(float temp = get_temp())
{
return (1.8*temp) + 32;
}
int main()
{
int input;
std::cout<<"Use 1. Print Name.\n";
std::cout<<"Use 2. Print Address.\n";
std::cout<<"Use 3. Add two numbers.\n";
std::cout<<"Use 4. Write a program which takes three values from user and calculate average of it.\n";
std::cout<<"Use 5. Write a program which takes 5 subject marks from user. Calculate average of it. According to average display appropriate grade.\n";
std::cout<<"Use 6. Write a program which takes temperature value in Celsius and coverts it in Fahrenheit.\n";
std::cin>>input;
switch(input)
{
case 1:
std::cout<<"Srijan";
break;
case 2:
std::cout<<"Varanasi";
break;
case 3:
std::cout<<add();
break;
case 4:
std::cout<<average();
break;
case 5:
std::cout<<get_grades();
break;
case 6:
std::cout<<c_to_f();
break;
default:
std::cout<<"Invalid!";
break;
}
return 0;
}
view raw lab_1.cpp hosted with ❤ by GitHub

Comments

Popular posts from this blog

Problem Statement 2

Code it Up! Write a program such that when the user.  Use 1. Program which prints whether the number is prime or not. Use 2.  Program which prints table of given number. Use 3.  Program which prints day according to given number using switch case. Use 4.  Program which prints 1 to 10 in reverse order. Use 5.  Program which prints weather the entered number is multipliable with 5 without reminder or not. Use 6.  Program which takes choice from user to calculate the area of triangle, rectangle or square using switch case You can take help from below!

Building a Binary Calculator With Object Oriented Programming in C++

Let's begin! Creating a basic calculator is a no biggie! So we are applying the concept of object oriented programming and making this program work until the user ask to end the task, in this calculator we can also intake the value as much as we want without restarting the program! It's one of basis and yet a core project where majority of your programming skills are used! Happy Programming!