Showing posts with label learn coding. Show all posts
Showing posts with label learn coding. Show all posts

Wednesday, 5 October 2016

WHILE LOOP IN C++

CODINGCLASSES|LEARNTOPROGRAM



WHILE LOOP IN C++
E.G:-

#include<iostream.h>
#include<conio.h>
void main()
{
int i=0 ,n;
cout<<"Enter the number from own wish"<<endl;
cin>>n;
while(i<=n)
{
cout<<"This programm is the example of while loop "<<endl;
i++;
cout<<"i"<<endl;
}
getch();
}

o/p:-
Enter the number of own wish n=10
0,1,2,3,4,5,6,7,8,9

Hii, friends in this program no any compile and runtime error it is already checked in Turbo c/c++ ide.

IF you have any query plz comment below

thanks for visiting!!

Wednesday, 21 September 2016

HELLO WORLD !! PROGRAMMING IN JAVA

CODINGCLASSES|LEARNTOPROGRAM



                                                           JAVA


Package Coding classes;/*you can choose any package name from own wish*/

Class Java
{
public static void main(String []args)
{

System.out.println("HELLO WORLD ");

}

}

RUN YOUR CODE

OUTPUT O/P:-HELLO WORLD

This programming is checked in Eclipse and Netbeans Ide no any compile and run time error BUILD SUCCESSFULLY

HELLO WORLD!! PROGRAMMING IN C++ LANGUAGE

CODINGCLASSES|LEARNTOPROGRAM






HELLO WORLD !!
                                          PROGRAMMING IN  "C++"


E.g:-

#include<iostream.h>
#include<conio.h>
void main()
{
cout<<"HELLO WORLD";

}

O/p(output):-HELLO WORLD

I COMpILE  THIS PROGRAM IS CHECKED IN TURBO C++ EMULATOR 

IT HAVE NO ANY COMPILE AND RUN TIME ERROR