Tuesday, 24 November 2015

C++ code to find table of any number

#include <iostream> using namespace std; int main() { int n; cout << "Enter A Number : "; cin >> n; cout << n << " * " << 1 << " = " << n * 1 << endl; cout << n << " * " << 2 << " = " << n * 2 << endl; cout << n << " * " << 3 << " = " << n * 3 << endl; cout <<...
Share:

C++ code to find circumference of circle

#include <iostream> using namespace std; int main() { double  radius, circumference; cout << "Enter The Radius Of circle : "; cin >> radius; circumference = 2 * 3.14*radius; cout << "Circumference is : " << circumference << endl; return 1...
Share:

C++ code to find area of circle

#include <iostream> using namespace std; int main() { float radius, area; cout << "Enter The Radius Of Circle : "; cin >> radius; area = 3.14*radius*radius; cout << "Area Of Circle  Is : " << area << endl; return 1...
Share:

C++ Code to find average of marks

#include <iostream> using namespace std; int main() { int sub1, sub2, sub3, sub4, sub5, average; cout << "Enter Marks Of Five Subjects : \n"; cin >> sub1 >> sub2 >> sub3 >> sub4 >> sub5; average = (sub1 + sub2 + sub3 + sub4 + sub5) / 5; cout << "Average is : " << average << endl; return 1...
Share:

C++ Code for sum of 4 numbers

#include <iostream> using namespace std; int main() { int num1, num2, num3, num4, sum; cout << "Enter Four Numbers : \n"; cout << "a = "; cin >> num1; cout << "b = "; cin >> num2; cout << "c = "; cin >> num3; cout << "d = "; cin >> num4; sum = num1 + num2 + num3 + num4; cout << "Sum Is  : " << sum << endl; ...
Share:

Saturday, 24 October 2015

top software houses in pakistan

#1 : NetSol Technologies: NetSol Technologies Software House is at # 1 in raking among all software houses in Pakistan.It is on CMMI Level 5.Najeeb Ghauri is the founder, Chairman of the Board of Directors and CEO of NetSol Technologies, Inc. In the early years of the Company, he was responsible for restructuring the company’s business model into that of an IT company and was instrumental in the...
Share:

Saturday, 17 October 2015