randomposts
Powered by Blogger.

Write a program to print n steps of a Fibonacci series using for loop Code in Java Programming

No comments
Write a program to print n steps of a Fibonacci series using for loop Code in Java Programming: import java.util.*;  class fibonacci {      public static void main(String args[])      {           ...Read more

Write a program that uses all the escape sequences to print the characters code in Java Programming

No comments
import java.util.*; import java.io.*; class q2 {      public static void main(String args[ ])      {            System.out.println("escape character  sequences ");           ...Read more

write a program to swastika Triangle in C++

No comments
• Write a program to print following triangle. (Use getdata() for get n value & display() for print triangle) Get input from user to print n number of line. e.g(n=5) . * **  ***  ****  *****  #include<iostream.h> #include<conio.h> class...Read more

write a program to Take number from user and print that number into reverse Using proper function in C++

No comments
#Header File include#include<stdio.h> #Header File include#include<conio.h> #Header File include#include<iostream.h> class rev {      private :            int no;     ...Read more

write a program code Print Fibonacci series Using proper function in C++

2 comments
Header File include#include<stdio.h> Header File include#include<conio.h> Header File include#include<iostream.h> class fibo {      private :            int n,a,b,t;     ...Read more

Make full mark sheet Program Code in C++ using turbo c editor.(Use appropriate data member and member function)

No comments
#include<stdio.h>___(Don't Missing Syntax required). #include<conio.h>___(Don't Missing Syntax required). #include<iostream.h>___(Don't Missing Syntax required). class student {            int no,s1,s2,s3,tot,per;           ...Read more

Take Employee information like, Emp_Id, Emp_Name, Emp_design,Emp_Salary with the help of the function and display with appropriate function Programing code in c++

No comments
#include<iostream.h>___(Don't Missing Syntax required). #include<conio.h> #include<stdio.h> #include<string.h> class employe {      int empno;      char name[20];      char *desig;     ...Read more