-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforloop.cpp
More file actions
86 lines (65 loc) · 1.42 KB
/
Copy pathforloop.cpp
File metadata and controls
86 lines (65 loc) · 1.42 KB
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
#include <iostream>
using namespace std;
int main() {
// int n;
// cout<<"Enter the value of n:-"<<endl;
// cin>>n;
// cout<<"Printing the value from 1 to n-"<<endl;
// for (int i = 1; i <= n; i++)
// {
// cout<<i<<endl;
// }
// int n;
// cout<<"Enter the value of n:-"<<endl;
// cin>>n;
// cout<<"Printing the value of Sum from 1 to n-"<<endl;
// int sum = 0;
// for (int i = 1; i <= n; i++)
// {
// sum+=i;
// }
// cout<<sum<<endl;
// return 0;
// int n=10;
// int a = 0 ;
// int b = 1 ;
// cout<<a<<" "<<b<<" ";;
// for (int i = 1; i <= n; i++)
// {
// int sum = a+b;
// cout<<sum<<" ";
// a=b;
// b=sum;
// }
// int n;
// cout<<"Enter the value of n:-"<<endl;
// cin>>n;
// bool isPrime = 1;
// for(int i =2;i<n;i++){
// if(n%i==0){
// isPrime = 0;
// break;
// }
// }
// if(n==1){
// isPrime = 0;
// }
// if(isPrime == 1){
// cout<<"It is a Prime Number"<<endl;
// }
// else
// {
// cout<<"It is not a Prime Number"<<endl;
// }
for (int i = 0; i <5; i++)
{
for (int j = i; j <= 5; j++)
{
if (i+j==10)
{
break;
}
cout<<i << " " << j << endl;
}
}
}