-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path62ndProgram_Example_18.cpp
125 lines (124 loc) · 2.74 KB
/
62ndProgram_Example_18.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*******************
* Prime Numbers:A natural number that can be divided exactly only by itself and 1.
* Eg: 2,3,5,7, .... etc. 0 and 1 and negative numbers are not prime numbers.
****************************************************************/
#include<iostream>
using namespace std;
int main(){
int a;
cout << "Enter an integer:" ;
cin >> a;
int c ;
if(a==0 || a==1 || a<0){
cout << "Invalid input";
}
for(int i=2;i<=a;i++){
c=0;
for(int j=1;j<=i;j++){
if(i%j==0){
c= c+1;
}
}
}
if(c==2){
cout << "The number is prime";
}
else{
cout << "The number is not prime";
}
return 0;
}
/*******************************
* Workings:
* 1. Enter an integer:2
* 2. 2!=0 ; 2 !=1 and 2 >0
* Hence:
* for int i = 2; i <= 2 (i.e. loop will execute only once)
* c= 0
* for int j = 1 to 2
* when j =1:
* if(2%1==0)== true:
* c = 0+1 = 1,
* when j =2:
* if(2%2==0)== true:
* c= 1+1 =2
*
*As c is 2 ; 2 is prime.
*
*
* 1. Enter an integer:3
* 2. 3!=0 ; 3 !=1 and 3 >0
* Hence:
* for int i = 2; i <= 3 (i.e. loop will execute only twice)
* when i =2:
* c= 0
* for int j = 1 to 2:
* when j =1:
* if(2%1==0)== true:
* c = 0+1 = 1,
* when j =2:
* if(2%2==0)== true:
* c= 1+1 =2
*
* when i =3:
* c= 0
* for int j = 1 to 3:
* when j =1:
* if(3%1==0)== true:
* c = 0+1 = 1,
* when j =2:
* if(3%2!=0)== false:
* when j =3:
* if(3%3==0)== true:
* c= 1+1 =2
*
*As c is 2 ; 3 is prime.
*
* 1. Enter an integer:4
* 2. 4!=0 ; 4 !=1 and 4 >0
* Hence:
* for int i = 2; i <= 4 (i.e. loop will execute only thrice)
* when i =2:
* c= 0
* for int j = 1 to 2:
* when j =1:
* if(2%1==0)== true:
* c = 0+1 = 1,
* when j =2:
* if(2%2==0)== true:
* c= 1+1 =2
*
* when i =3:
* c= 0
* for int j = 1 to 3:
* when j =1:
* if(3%1==0)== true:
* c = 0+1 = 1,
* when j =2:
* if(3%2!=0)== false:
* when j =3:
* if(3%3==0)== true:
* c= 1+1 =2
*
* when i =4:
* c= 0
* for int j = 1 to 4:
* when j =1:
* if(4%1==0)== true:
* c = 0+1 = 1,
* when j =2:
* if(4%2==0)== true:
* c= 1+1 =2
* when j =3:
* if(4%3!=0)== false:
* when j =4:
* if(4%4==0)== true:
* c= 2+1 =3
*
*
*As c is 3 ; 4 is not prime.
*
* ......Hence it goes on........
*
*
* ****************************************/