Oop ST
Oop ST
Oop ST
M.S.B.T.E.
Evolution sheet for Micro Project
Marks out of 4
Marks out of 6 Total
for
for mars
Roll No Name of students performance
performance in out
in oral/
group activity of 10
Presentation
Name and
Signature of Mrs Malgonde R K
faculty
SVERI’s COLLEGE OF ENGINEERING (POLYTECHNIC), PANDHARPUR.
CERTIFICATE
is a bonafide work carried out by above students, under the guidance of Mrs Malgonde R K. and it
is submitted towards the fulfillment of requirement of MSBTE, Mumbai for the award of Diploma in
Information Technology at SVERI’s COE (Polytechnic), Pandharpur during the academic year 2022-2023.
(Mrs Malgonde R. K)
Guide
(Mr.Bhandare P. S.) (Dr. Misal N. D.)
HOD Principal
Place: Pandharpur
Date: / /
Acknowledgement
the project would not have been a success. We would like to give our
heartfelt gratitude to Principal Dr. N. D. Misal, Guide & HOD Mr.Misal G.S who
is the supervisor of our project for helping and encouraging us in many ways
to make our project a success. We would never been able to finish our work
without great support and enthusiasm from friends and support from our
void main()
{
int i,j,n;
clrscr)();
cout<<“\n ENTER NUMBER OF STARS IN MIDDLE ROW=”;
cin>>n;
for(i=0;i<n;i++)
{
for(j=n-1;j>=0;j--)
{
if (j>i)
{
cout<<“ ”;
}
else
{
cout<<“* ”;
}
}
cout<<“\n”;
}
for(i=n-1;i>=0;i--)
{
for(j=n-1;j>=0;j--)
{
if (j>=i)
{
cout<<“ ”;
}
else
{
cout<<“* ”;
}
}
cout<<“\n”;
}
getch();
}
Output:-
*
* *
* * *
* * * *
* * *
* *
* *
Conclusion
References