-
Notifications
You must be signed in to change notification settings - Fork 0
/
check.cpp
71 lines (48 loc) · 1.49 KB
/
check.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
// #include<iostream>
// using namespace std;
// int main()
// {
// int a,b;
// cin>>a>>b;
// b=a;
// cout<<"value of swap is :"<<b;
// return 0;
// }
// #include<iostream>
// using namespace std;
// int main()
// {
// int r=6;
// cout<<"voluume of radius is :"<<(4*3.14*r*r*r)/3;
// return 0;
// }
// #include<iostream>
// using namespace std;
// int main()
// {
// int a=30,b=60;
// cout<<"third angle of traingle is :"<<(180-(a+b));
// return 0;
// }
// #include<iostream>
// using namespace std;
// int main(){
// int a= 25,b= 20;
// int c=15,d=25;
// cout<<"input 1st two numbers "<< a<<"\t"<<b <<endl;
// cout<<"input 2nd two numbers "<< c<<"\t"<<d <<endl;
// cout<<"total of four numbers is :"<< a+b+c+d<<endl;
// cout<<"average of four numbers is :"<< float(a+b+c+d)/4;
// return 0;
// }
#include<iostream>
using namespace std;
int main(){
cout<<"******"<<endl;
cout<<"*" <<"\t"<< "\t"<< "*" <<"\t" << "*"<<endl;
cout<<"*" <<"\t"<< "\t"<< "*" "\t" << "*"<<endl;
cout<<"*" << "\t" << "*******" << "\t" << "*******"<<endl;
cout<<"*" <<"\t"<< "\t"<< "*" "\t" << "*"<<endl;
cout<<"*" <<"\t"<< "\t"<< "*" << "\t" << "*"<<endl;
cout<<"******";
}