Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sankaire committed Feb 4, 2022
1 parent 34f489c commit 099b0d9
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PowerofAdouble.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// power of a double

#include <iostream>
#include <math.h>

Expand Down
Binary file modified a.out
Binary file not shown.
1 change: 1 addition & 0 deletions cubeRoot.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// cube root of a number
#include <iostream>
#include <cmath>
using namespace std;
Expand Down
2 changes: 2 additions & 0 deletions powerOfNumber.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// power of the two numbers

#include <iostream>
#include <math.h>
using namespace std;
Expand Down
2 changes: 2 additions & 0 deletions squreRoot.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// square root of a number

#include <iostream>
#include <cmath>
using namespace std;
Expand Down
8 changes: 8 additions & 0 deletions sumofThreeNo.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// sum and product of two numbers

#include <iostream>
using namespace std;
/* multiple line */
// single line comentss

int main()
{
int a, b, c;
// const float pie = 3.142;

// float r = pie * a;
// cout << r << endl;

cout << "Enter The First Number: ";
cin >> a;
Expand Down

0 comments on commit 099b0d9

Please sign in to comment.