Friday, 28 February 2014
16:22
No comments
oracle excersies start from lower to top
16:18
No comments
Wednesday, 26 February 2014
Re: coding link with commands
16:28
No comments
oracle classes
On 26 February 2014 16:28, rishabh kumar Jain <wonderishabh@gmail.com> wrote:
desc empl;
On 26 February 2014 16:21, rishabh kumar Jain <wonderishabh@gmail.com> wrote:
http://ora:5560/isqlplusgo to this link using any web browser with i.d. and passwordscotttigerthencommands:-create table empl(ename varchar2(25),eno number(3),sal number(5));
oracle classes
16:26
No comments
http://ora:5560/isqlplus
go to this link using any web browser with i.d. and password
scott
tiger
then
commands:-
create table empl(ename varchar2(25),eno number(3),sal number(5));
code using object and class to find factorial of any number using c++
16:24
No comments
#include<iostream.h>
class factorial
{
public:
int count,n,fact;
public:
void fun()
{
cout<<"Enter The No. :\n";
cin>>n;
count=1;
fact=1;
while(count!=n)
{
count++;
fact = fact * count;
}
cout<<"Factorial Value is :\n"<<fact<<endl;
}
};
main()
{
class factorial f1;
f1.fun();
}
class factorial
{
public:
int count,n,fact;
public:
void fun()
{
cout<<"Enter The No. :\n";
cin>>n;
count=1;
fact=1;
while(count!=n)
{
count++;
fact = fact * count;
}
cout<<"Factorial Value is :\n"<<fact<<endl;
}
};
main()
{
class factorial f1;
f1.fun();
}
coding link with commands
16:21
No comments
http://ora:5560/isqlplus
go to this link using any web browser with i.d. and password
scott
tiger
then
commands:-
create table empl(ename varchar2(25),eno number(3),sal number(5));
Subscribe to:
Posts (Atom)