number

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number. Object: C# Program Make a class EvenODD, which checks whether the number you inputted is an Even or Odd number. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_3 { class …

C# program which checks whether the number you inputted is an Even or Odd number Read More »

Write a program that generates a table of any number

Write a program that generates a table of any number

Program that generates a table of any number   Object: Write a program that generates a table of any number. C++ Projects. Code: #include<iostream> #include<conio.h> using namespace std; void main() { int no,i,tab; cout<<” :Table Generator:\n\n”; cout<<“Enter Any Number: “; cin>>no; for(i=1;i<=10;i++) { tab=no*i; cout<<no<<” * “<<i<<“= “<<tab<<endl; } getch(); } #include<iostream> #include<conio.h> using namespace …

Write a program that generates a table of any number Read More »