Posts

Fibonnaic Sequence

Image
  *.Fibonnaic sequence :- The Fibonnaic Sequence is a series of numbers in which each number is the sum of two preceding numbers. #.Code :-  # include < iostream > using namespace std ; void adtn_fun ( int x , int y , int z ){     for ( int i = 0 ; i < z ; i ++){         int sum = x + y ;         cout << ( i + 1 ) << " . : " << x << " + " << y << " = " << sum << endl ;         int temp = x ;         x = y ;         y = sum ;         sum = temp ;     } } int main (){     int n1 , n2 ;     cout << " enter 1st num : " ;     cin >> n1 ;     cout << " enter 2nd num : " ;     cin >> n2 ;     int loop ;     cout << " enter how many times you want to perform function : " ; ...

Armstrong Number In C++

Image
*. ArmStrong Number :- ArmStrong Number is equal to the sum of cube of its all digits #.Code :- # include < iostream > using namespace std ; int main (){     /*ArmStrong Number are the number whose addition of cube of every digit is equal to that number*/     int num ;     cout << " Enter  a num : " ;     cin >> num ;     const int num2 = num ;     int store ;     int str ;     int arm_num = 0 ;     while ( num > 0 ){         store = num % 10 ;         str =( store * store * store );         arm_num += str ;         num = num / 10 ;     }     if ( num2 == arm_num ){         cout << num2 << " is armstrong number " ;     }     else {         cout << num2 << " is not armstrong...

A program to Search element in array , and if repeated so at which location it is present and how many time the number is repeated

Image
  CODE :-  //FIXED-FINAL UPDATE FULLY WORKING CODE #include <iostream> using namespace std ; int i ; // I've created available() and notavailable() function and call it in the function named searching (); void available ( int n , int key , int arr []){       for ( int i = 0 , j = 1 ; i < n , j < n + 1 ; i ++ , j ++ ){           if ( arr [ i ] == key ){               cout << "the element present at : " << j << " location" << endl ;          }      } } void notavailable ( int n , int key , int []){     int arr [ n ];     for ( int i = 0 ; i < n ; i ++ ){         if ( arr [ i ] != key ){               cout << "the element is not present " ;               break ;           } ...

Take n no. Of elements and arrange them in Ascending & Descending Order

Image
Que. Take n no. Of elements and arrange them in Ascending & Descending Order    Code:- #include<iostream> //or #include<bits/stdc++.h> //^ this one is awesome for doing all kind of stuff in c++ and also you dont have to include any other header file ,if you enter this one  using namespace std; int main (){     int n ;     cout<<"write size of array:";     cin>>n;     int arr[n];     for(int i =0, j=1;i<n,j<n+1;i++,j++){         cout<<"enter "<<j<<"th location value: ";         cin>>arr[i];         cout<<" ";     }              //program for arranging in ascending order using for loop      for(int j=0;j<n;j++){         for(int i=0;i<n;i++){             if(arr[i]>arr[i+1]){   ...

To find maximum number between every two consecutive elements in Array also print final maximum number

Image
  Code:-  #include<iostream> #include<climits> using namespace std; int main(){    long int n ;     long int maximum=INT_MIN;     long int maxi =INT_MIN+1;     cout<<"Enter size of array : ";     cin>>n;    long int arr[n];     for(long int i =0,j=1;i<n,j<n+1;i++,j++){         cout<<"enter no"<<j<<": ";         cin>>arr[i];     }     for(long int i =0,j=1;i<n+1,j<n;i++,j++){         maximum=max(arr[i],arr[j]);         maxi=max(arr[i],arr[j]);         cout<<"from "<<arr[i]<<" & "<<arr[j]<<" : " <<maxi<<" is maximum"<<endl;     }     long int great=max(arr[0],arr[n-1]);     cout<<"from "<<arr[n-1]<<" & "     <<arr[0...

To do addition of all the Elements of Array in C++

Image
C++ code to do addition of all elements in array :- #include<iostream> using namespace std; int main(){          int n ;     cout<<"enter size if array : ";     cin>>n;     int arr[n];     cout<<"Enter "<<n<<" Array : ";     for(int i=0;i<n;i++){         cin>>arr[i];     }     cout<<"The array you entered is :";     for(int i=0;i<n;i++){         cout<<arr[i]<<" ";     }     cout<<endl;     int sum=0;     for(int i=0;i<n;i++){     sum+=arr[i];     }     cout<<"the addition of all elements in the array is :" <<sum;          return 0;      } Output :- Video of Output :- 

Gross Caloritic Value (GCV) formula using C++

Image
# Code for Calculating GCV using C++ :-  #include <iostream> #include <cmath> using namespace std ; int main (){              float W , w , t2 ,t1 , tc , ta , tf , tt , x ;              cout << "I've created GCV FORMULA USING C++:"                          << endl ;              cout << "w :";                  cin >> W ;cout << endl ;             cout << "w:";                 cin >> w ;      cout << endl ;              float a = W+w ;              cout <<"W+w :" << a <<endl;              cout << "t2...