c++ dsa questions of apna collage #apnacollage #sardhamaam #amanbhaiya

 #include<iostream>

using namespace std;
int main(){
    // sum of two number
   
    // int a ;
    // int b;
    // cout<<"enter the digit a and b";
    // cin>>a>>b;
    // float sum= a+b;
    // cout<<sum;

    // avg of three number

    // int a;
    // int b;
    // int c;
    // cout<<"enter the digit ";
    // cin>>a>>b>>c;
    // int avg = (a+b+c)/3;
    // cout<<avg;

    // area of square
    // int n;
    // cout<<"enter the side of square";
    // cin>>n;
    // int area = n*n;
    // cout<<"area of square"<<area;
   
    //total cost of items inpurchaging of pencil , pen , eraser
    // float pencil=10.90;
    // float pen = 15.35;
    // float eraser =5.12;
    // float totalcost = ( pencil+pen+eraser);
    // cout<<"total cost: "<<totalcost<<endl;
    // cout<<"total cost with gst: "<<totalcost+(totalcost*.18);

// simple interest questions
    // int princple;
    // int rate ;
    // int time;
    // cout<<"enter the princple amount";
    // cin>>princple;
    // cout<<"enter the rate";
    // cin>>rate;
    // cout<<"enter the  time";
    // cin>>time;
    // float si = (princple*rate*time)/100;
    // cout<<"the simple interest is : "<<si;

    // area of circle
    // int radius = 10;
    // int area = radius*radius;
    // cout<< " area of circle is :"<<area;
 
 // day 3-----> assignment
 // question 1 a;
    //    int x= 2 , y=5;
    //    int exp1  = ( x * y / x);
    //    int exp2 = (x*(y/x));
    //    cout<<exp1<<endl<<exp2;
    // //    output is 5 and 4
 
 // question b

//  int x=10 ; int y=5;
//  int exp1 =( y*(x/y+x/y));
//  int exp2 = (y*x/y + y*x/y);
//  cout<<exp1 <<endl;
//  cout<<exp2;
//  // output is 20 amd 20;

// question no. c;

// int x = 200, y=50, z=100;
// if (x>y && y>z){
//     cout<<"hello world!";
// }
// if (z>y && z<x){ // if the both value are true then it execute.
//     cout<<"c++";
// }
// if ((y+200)<x && (y+150)<z){
//     cout<<"hello world";
// }
//  output: c++

// question print the largest of two number
// int a ,b;
// cin>>a>>b;
// if (a<b){
//     cout<<b<< "is greater: ";

// }
// if (a==b){
//     cout<<"both are equal";
// }
// else
// {
//     cout<<a << " is greater: ";

// }
//program for odd and even
// int a;
// cin>>a;
// if(a%2==0){
//     cout<<a<<" is even";
// }
// else{
// cout<<a<<" is odd";
// }
 
 // grade a , b ,c
//  int marks ;
//  cin >>marks;
//  if (marks >=80){
//     cout<<"you grade is a+";
//  }
//  else if (marks >70){
//     cout<<"you grade is b+"; }
//     else
//     {
//         cout<<"your grade is c";
//     }
 
 // tax calculator

//  int income ;
//  cin>>income ;
//  if(income < 500000){
//     cout<<"you will pay tax 0%";
//  }
//  else if(income>500000 || income <1000000){
//  cout<<"your tax will be"<<.2*income;
//  }
//  else if (income>1000000){{
//     cout<<"your tax will be "<<.30*income;
//  }

// greatest of three number

// int a,b,c;
// cin>>a>>b>>c;
// if(a>b&&a>c){
//     cout<<"the greater number is "<<a;
// }
// else if (b>a && b>c){
//     cout<<"the greater number is "<<b;
// }
// else {
//     cout<<"the greater number is "<<c;
// }
 
 // smallest of three number
//  int a,b,c;
// cin>>a>>b>>c;
// if(b>a || b>c || a>c){
//     cout<<"the smallest number is "<<c;
// }
// else if (b>a || b>c ||c>a){
//     cout<<"the smallest number is "<<b;
// }
// else {
//     cout<<"the smallest number is "<<b;
// }

//calculator
// char opn;
// int a=10;
// int b=5;
// cout<<"enter operation + , - , * , / : ";
// cin>>opn;
// switch(opn){
//     case '+':
//     {
//         cout<<a+b;
//         break;
//     }
//     case '-':
//     {
//         cout<<a-b;
//         break;
//     }
//     case '*':
//     {
//         cout<<a*b;
//         break;
//     }
//     case '/':
//     {
//         cout<<a/b;
//     }
//     default:{
//         cout<<"invalid operation";
//     }
// }
// program for postive negaive or zero;
// int n;
// cin>>n;
// if(n>0){
//     cout<<"positive number";
// }
// else if(n<0){
//     cout<<"negative number";
// }
// else{
//     cout<<"neutarl number";
// }

// leap year
// int year;
// cin>>year;
// if(year%4==0){
//     cout<<year<<": is leap year";
// }
// else{
//     cout<<"not a leap year";
// }

// to check armstrong number or not


    return 0;
}

Comments