Java Code To Find The Maximum And Minimum All Numbers Without Arrays.


Java Code To Find The Maximum And Minimum All  Numbers  Without  Arrays.
=============================================================

        try {
            int a = 0, b = 0, c = 0, d=Integer.MAX_VALUE;
            //d=Integer.MAX_VALUE   because the  d is set to its maximum value as being an integer
            // and it is of the order 2^31-1 

C++ Code To Find Random Numbers From 1 To 6


C++ Code  To Find Random Numbers From  1 To 6
=======================================

Uses
=========

This Programe is Used In Creating Games Like Rolling Dies Where U Need A Random Number Between 1 and 6

C++ Code Check Whether The String Contains Adjacent Charecters Or Not


C++  Code Check  Whether The String   Contains Adjacent Charecters Or Not  :
============================================================


#include <iostream>
#include <string>
using namespace std;
int main()
{

C++ Code To Find The Sum Of A Series



C++ Code To Find The Sum  Of  A Series
===============================


#include <iostream>
using namespace std;
int main()

C++ Code To Reverse A String:


C++ Code To Find The Reverse Of  String
===============================

#include <iostream>
#include <string>
#include <limits>

int main()

C++ Code To Find The Maximum And Minimum Among All The Entered Numbers.



C++ Code To  Find The Maximum And Minimum Of  All The Entered Numbers:
 ============================================================


#include <iostream>
#include <string.h>
#include <math.h>
#include<limits.h>
using namespace std;

C++ Code To Find Factorial Of A Number .


C++  Code To Find The Factorial Of  A  Number
=====================================

#include <iostream>
using namespace std;
int main()
{