SlideShare a Scribd company logo
this is the code using array
i want with stack or linked list or tree
________________
import
java
.
io
.*;
public
class
LCD
{
static
char
inp
[][];
static
char
res
[][];
static
int
n
;
static
int
r
=
5
,
c
=
3
;
public
static
void
main
(
String
[]
args
)
throws
IOException
{
BufferedReader
br
=
new
BufferedReader
(
new
InputStreamReader
(
System
.
in
));
String
input
=
""
;
String
arr
[]={};
String
temp
=
""
;
n
=
1
;
input
=
br
.
readLine
();
process
(
input
);
n
=
c
(
input
);
inp
=
new
char
[
r
][
c
];
res
=
new
char
[
r
][
c
];
}
static
void
process
(
String
s
){
int
a
;
String
hold
=
""
;
for
(
int
i
=
0
;
i
<
s
.
length
();
i
++){
a
=(
int
)
s
.
charAt
(
i
);
switch
(
a
){
case
'0'
:
hold
=
"020313010313020"
;
pri
(
hold
);
break
;
case
'1'
:
hold
=
"010113010113010"
;
pri
(
hold
);
break
;
case
'2'
:
hold
=
"020113020311020"
;
pri
(
hold
);
break
;
case
'3'
:
hold
=
"020113020113020"
;
pri
(
hold
);
break
;
case
'4'
:
hold
=
"010313020113010"
;
pri
(
hold
);
break
;
case
'5'
:
hold
=
"020311020113020"
;
pri
(
hold
);
break
;
case
'6'
:
hold
=
"020311020313020"
;
pri
(
hold
);
break
;
case
'7'
:
hold
=
"020113010113010"
;
pri
(
hold
);
break
;
case
'8'
:
hold
=
"020313020313020"
;
pri
(
hold
);
break
;
case
'9'
:
hold
=
"020313020113020"
;
pri
(
hold
);
break
;
}
}
}
static
void
pri
(
String
s
){
int
ind
=
0
;
char
ch
=
' '
;
String
res
=
""
;
for
(
int
i
=
0
;
i
<
r
;
i
++){
res
=
""
;
for
(
int
j
=
0
;
j
<
c
;
j
++){
if
(
ind
<(
16
))
ch
=
s
.
charAt
(
ind
);
if
(
ch
==
'1'
||
ch
==
'0'
){
res
+=
" "
;
}
if
(
ch
==
'3'
||
ch
==
'4'
){
res
+=
"|"
;
}
else
if
(
ch
==
'2'
){
res
+=
"-"
;
}
ind
=
ind
+
1
;
}
System
.
out
.
println
(
res
);
}
}
static
int
c
(
String
in
){
return
Integer
.
parseInt
(
in
);
}
static
void
p
(
Object
in
){
System
.
out
.
print
(
in
);
}
static
void
pl
(
Object
in
){
System
.
out
.
println
(
in
);
}
}
________________________________________
this is the code using array i want with stack or linked list  or .docx

More Related Content

Similar to this is the code using array i want with stack or linked list  or .docx

Egor Bogatov - .NET Core intrinsics and other micro-optimizations
Egor Bogatov - .NET Core intrinsics and other micro-optimizationsEgor Bogatov - .NET Core intrinsics and other micro-optimizations
Egor Bogatov - .NET Core intrinsics and other micro-optimizations
Egor Bogatov
 
Java Simple Programs
Java Simple ProgramsJava Simple Programs
Java Simple Programs
Upender Upr
 
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
 Problem1 java codeimport java.util.Scanner; Java code to pr.pdf Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
anupamfootwear
 
6_Array.pptx
6_Array.pptx6_Array.pptx
6_Array.pptx
shafat6712
 
Java practice programs for beginners
Java practice programs for beginnersJava practice programs for beginners
Java practice programs for beginners
ishan0019
 
Java, Up to Date Sources
Java, Up to Date SourcesJava, Up to Date Sources
Java, Up to Date Sources
輝 子安
 
The Art of Java Type Patterns
The Art of Java Type PatternsThe Art of Java Type Patterns
The Art of Java Type Patterns
Simon Ritter
 
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentalsHCMUTE
 
Arrays and strings in c++
Arrays and strings in c++Arrays and strings in c++
Arrays and strings in c++
GC University Faisalabad
 
java programming cheatsheet
java programming cheatsheetjava programming cheatsheet
java programming cheatsheet
BD AB
 
JAVA.pdf
JAVA.pdfJAVA.pdf
JAVA.pdf
jyotir7777
 
131 Lab slides (all in one)
131 Lab slides (all in one)131 Lab slides (all in one)
131 Lab slides (all in one)
Tak Lee
 
Java file
Java fileJava file
Java file
simarsimmygrewal
 
Java arrays
Java    arraysJava    arrays
Java arrays
Mohammed Sikander
 
Java Programming - 06 java file io
Java Programming - 06 java file ioJava Programming - 06 java file io
Java Programming - 06 java file io
Danairat Thanabodithammachari
 
.net progrmming part1
.net progrmming part1.net progrmming part1
.net progrmming part1
Dr.M.Karthika parthasarathy
 
Java binary subtraction
Java binary subtractionJava binary subtraction
Java binary subtraction
Charm Sasi
 
Java 5 New Feature
Java 5 New FeatureJava 5 New Feature
Java 5 New Feature
xcoda
 

Similar to this is the code using array i want with stack or linked list  or .docx (20)

Egor Bogatov - .NET Core intrinsics and other micro-optimizations
Egor Bogatov - .NET Core intrinsics and other micro-optimizationsEgor Bogatov - .NET Core intrinsics and other micro-optimizations
Egor Bogatov - .NET Core intrinsics and other micro-optimizations
 
Java Simple Programs
Java Simple ProgramsJava Simple Programs
Java Simple Programs
 
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
 Problem1 java codeimport java.util.Scanner; Java code to pr.pdf Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
 
6_Array.pptx
6_Array.pptx6_Array.pptx
6_Array.pptx
 
Sam wd programs
Sam wd programsSam wd programs
Sam wd programs
 
Java practice programs for beginners
Java practice programs for beginnersJava practice programs for beginners
Java practice programs for beginners
 
Java, Up to Date Sources
Java, Up to Date SourcesJava, Up to Date Sources
Java, Up to Date Sources
 
The Art of Java Type Patterns
The Art of Java Type PatternsThe Art of Java Type Patterns
The Art of Java Type Patterns
 
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentals
 
Arrays and strings in c++
Arrays and strings in c++Arrays and strings in c++
Arrays and strings in c++
 
java programming cheatsheet
java programming cheatsheetjava programming cheatsheet
java programming cheatsheet
 
JAVA.pdf
JAVA.pdfJAVA.pdf
JAVA.pdf
 
131 Lab slides (all in one)
131 Lab slides (all in one)131 Lab slides (all in one)
131 Lab slides (all in one)
 
Java file
Java fileJava file
Java file
 
Java file
Java fileJava file
Java file
 
Java arrays
Java    arraysJava    arrays
Java arrays
 
Java Programming - 06 java file io
Java Programming - 06 java file ioJava Programming - 06 java file io
Java Programming - 06 java file io
 
.net progrmming part1
.net progrmming part1.net progrmming part1
.net progrmming part1
 
Java binary subtraction
Java binary subtractionJava binary subtraction
Java binary subtraction
 
Java 5 New Feature
Java 5 New FeatureJava 5 New Feature
Java 5 New Feature
 

More from abhi353063

number 1answer this in a paragraphShare the findings of your DiS.docx
number 1answer this in a paragraphShare the findings of your DiS.docxnumber 1answer this in a paragraphShare the findings of your DiS.docx
number 1answer this in a paragraphShare the findings of your DiS.docx
abhi353063
 
number 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docxnumber 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docx
abhi353063
 
number 1Are you a born leader If yes, provide examples of how y.docx
number 1Are you a born leader If yes, provide examples of how y.docxnumber 1Are you a born leader If yes, provide examples of how y.docx
number 1Are you a born leader If yes, provide examples of how y.docx
abhi353063
 
number 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docxnumber 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docx
abhi353063
 
number 1answer this one in a pargraphAlthough you may not be.docx
number 1answer this one in a pargraphAlthough you may not be.docxnumber 1answer this one in a pargraphAlthough you may not be.docx
number 1answer this one in a pargraphAlthough you may not be.docx
abhi353063
 
Nr  QuestionMarkDiscuss the three main environments that make.docx
Nr  QuestionMarkDiscuss the three main environments that make.docxNr  QuestionMarkDiscuss the three main environments that make.docx
Nr  QuestionMarkDiscuss the three main environments that make.docx
abhi353063
 
nron Corporation was launched in 1985, with the merger of Houston Na.docx
nron Corporation was launched in 1985, with the merger of Houston Na.docxnron Corporation was launched in 1985, with the merger of Houston Na.docx
nron Corporation was launched in 1985, with the merger of Houston Na.docx
abhi353063
 
Now that you have your GUI operational, it is time to take the appli.docx
Now that you have your GUI operational, it is time to take the appli.docxNow that you have your GUI operational, it is time to take the appli.docx
Now that you have your GUI operational, it is time to take the appli.docx
abhi353063
 
Now that you understand the full project lifecycle and how all the p.docx
Now that you understand the full project lifecycle and how all the p.docxNow that you understand the full project lifecycle and how all the p.docx
Now that you understand the full project lifecycle and how all the p.docx
abhi353063
 
Now that you sre beginig your second semester as astudent at Califor.docx
Now that you sre beginig your second semester as astudent at Califor.docxNow that you sre beginig your second semester as astudent at Califor.docx
Now that you sre beginig your second semester as astudent at Califor.docx
abhi353063
 
Now that you have developed an in-text citation for a summary, parap.docx
Now that you have developed an in-text citation for a summary, parap.docxNow that you have developed an in-text citation for a summary, parap.docx
Now that you have developed an in-text citation for a summary, parap.docx
abhi353063
 
Now that you have completed the sections on fiscal and monetary poli.docx
Now that you have completed the sections on fiscal and monetary poli.docxNow that you have completed the sections on fiscal and monetary poli.docx
Now that you have completed the sections on fiscal and monetary poli.docx
abhi353063
 
Now that we have decided to become an S Corp after reviewing the var.docx
Now that we have decided to become an S Corp after reviewing the var.docxNow that we have decided to become an S Corp after reviewing the var.docx
Now that we have decided to become an S Corp after reviewing the var.docx
abhi353063
 
Novel Shift by Em BaileyDescribe each of the minor characters i.docx
Novel Shift by Em BaileyDescribe each of the minor characters i.docxNovel Shift by Em BaileyDescribe each of the minor characters i.docx
Novel Shift by Em BaileyDescribe each of the minor characters i.docx
abhi353063
 
Nothing in science is written in stone.Whenever new discoveries .docx
Nothing in science is written in stone.Whenever new discoveries .docxNothing in science is written in stone.Whenever new discoveries .docx
Nothing in science is written in stone.Whenever new discoveries .docx
abhi353063
 
Now my experiment was to go to randomly selected people and ask th.docx
Now my experiment was to go to randomly selected people and ask th.docxNow my experiment was to go to randomly selected people and ask th.docx
Now my experiment was to go to randomly selected people and ask th.docx
abhi353063
 
Notice Due today before 12 am pacifAssignment 1 Discussion—Soci.docx
Notice Due today before 12 am pacifAssignment 1 Discussion—Soci.docxNotice Due today before 12 am pacifAssignment 1 Discussion—Soci.docx
Notice Due today before 12 am pacifAssignment 1 Discussion—Soci.docx
abhi353063
 
Notes on Hermes I. Hermes and Boundaries A. Hermes’ na.docx
Notes on Hermes I. Hermes and Boundaries A. Hermes’ na.docxNotes on Hermes I. Hermes and Boundaries A. Hermes’ na.docx
Notes on Hermes I. Hermes and Boundaries A. Hermes’ na.docx
abhi353063
 
Note. The purpose of this outline is to assist you in gathering th.docx
Note. The purpose of this outline is to assist you in gathering th.docxNote. The purpose of this outline is to assist you in gathering th.docx
Note. The purpose of this outline is to assist you in gathering th.docx
abhi353063
 
Note1. The Topic of research is Roller derbysubculture name .docx
Note1. The Topic of research is Roller derbysubculture name .docxNote1. The Topic of research is Roller derbysubculture name .docx
Note1. The Topic of research is Roller derbysubculture name .docx
abhi353063
 

More from abhi353063 (20)

number 1answer this in a paragraphShare the findings of your DiS.docx
number 1answer this in a paragraphShare the findings of your DiS.docxnumber 1answer this in a paragraphShare the findings of your DiS.docx
number 1answer this in a paragraphShare the findings of your DiS.docx
 
number 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docxnumber 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docx
 
number 1Are you a born leader If yes, provide examples of how y.docx
number 1Are you a born leader If yes, provide examples of how y.docxnumber 1Are you a born leader If yes, provide examples of how y.docx
number 1Are you a born leader If yes, provide examples of how y.docx
 
number 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docxnumber 1complete the attached test called the urbulence Tole.docx
number 1complete the attached test called the urbulence Tole.docx
 
number 1answer this one in a pargraphAlthough you may not be.docx
number 1answer this one in a pargraphAlthough you may not be.docxnumber 1answer this one in a pargraphAlthough you may not be.docx
number 1answer this one in a pargraphAlthough you may not be.docx
 
Nr  QuestionMarkDiscuss the three main environments that make.docx
Nr  QuestionMarkDiscuss the three main environments that make.docxNr  QuestionMarkDiscuss the three main environments that make.docx
Nr  QuestionMarkDiscuss the three main environments that make.docx
 
nron Corporation was launched in 1985, with the merger of Houston Na.docx
nron Corporation was launched in 1985, with the merger of Houston Na.docxnron Corporation was launched in 1985, with the merger of Houston Na.docx
nron Corporation was launched in 1985, with the merger of Houston Na.docx
 
Now that you have your GUI operational, it is time to take the appli.docx
Now that you have your GUI operational, it is time to take the appli.docxNow that you have your GUI operational, it is time to take the appli.docx
Now that you have your GUI operational, it is time to take the appli.docx
 
Now that you understand the full project lifecycle and how all the p.docx
Now that you understand the full project lifecycle and how all the p.docxNow that you understand the full project lifecycle and how all the p.docx
Now that you understand the full project lifecycle and how all the p.docx
 
Now that you sre beginig your second semester as astudent at Califor.docx
Now that you sre beginig your second semester as astudent at Califor.docxNow that you sre beginig your second semester as astudent at Califor.docx
Now that you sre beginig your second semester as astudent at Califor.docx
 
Now that you have developed an in-text citation for a summary, parap.docx
Now that you have developed an in-text citation for a summary, parap.docxNow that you have developed an in-text citation for a summary, parap.docx
Now that you have developed an in-text citation for a summary, parap.docx
 
Now that you have completed the sections on fiscal and monetary poli.docx
Now that you have completed the sections on fiscal and monetary poli.docxNow that you have completed the sections on fiscal and monetary poli.docx
Now that you have completed the sections on fiscal and monetary poli.docx
 
Now that we have decided to become an S Corp after reviewing the var.docx
Now that we have decided to become an S Corp after reviewing the var.docxNow that we have decided to become an S Corp after reviewing the var.docx
Now that we have decided to become an S Corp after reviewing the var.docx
 
Novel Shift by Em BaileyDescribe each of the minor characters i.docx
Novel Shift by Em BaileyDescribe each of the minor characters i.docxNovel Shift by Em BaileyDescribe each of the minor characters i.docx
Novel Shift by Em BaileyDescribe each of the minor characters i.docx
 
Nothing in science is written in stone.Whenever new discoveries .docx
Nothing in science is written in stone.Whenever new discoveries .docxNothing in science is written in stone.Whenever new discoveries .docx
Nothing in science is written in stone.Whenever new discoveries .docx
 
Now my experiment was to go to randomly selected people and ask th.docx
Now my experiment was to go to randomly selected people and ask th.docxNow my experiment was to go to randomly selected people and ask th.docx
Now my experiment was to go to randomly selected people and ask th.docx
 
Notice Due today before 12 am pacifAssignment 1 Discussion—Soci.docx
Notice Due today before 12 am pacifAssignment 1 Discussion—Soci.docxNotice Due today before 12 am pacifAssignment 1 Discussion—Soci.docx
Notice Due today before 12 am pacifAssignment 1 Discussion—Soci.docx
 
Notes on Hermes I. Hermes and Boundaries A. Hermes’ na.docx
Notes on Hermes I. Hermes and Boundaries A. Hermes’ na.docxNotes on Hermes I. Hermes and Boundaries A. Hermes’ na.docx
Notes on Hermes I. Hermes and Boundaries A. Hermes’ na.docx
 
Note. The purpose of this outline is to assist you in gathering th.docx
Note. The purpose of this outline is to assist you in gathering th.docxNote. The purpose of this outline is to assist you in gathering th.docx
Note. The purpose of this outline is to assist you in gathering th.docx
 
Note1. The Topic of research is Roller derbysubculture name .docx
Note1. The Topic of research is Roller derbysubculture name .docxNote1. The Topic of research is Roller derbysubculture name .docx
Note1. The Topic of research is Roller derbysubculture name .docx
 

Recently uploaded

Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 

Recently uploaded (20)

Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 

this is the code using array i want with stack or linked list  or .docx