SlideShare uma empresa Scribd logo
1 de 14
Baixar para ler offline
#include<iostream>
#include <cstdlib>
using namespace std;

int main()
{system("color a");
menu:
int bangun,bangundatar,bangunruang;
char ulang;
cout<<"========================================================n
";
cout<<"tMENGHITUNG BANGUN DATAR DAN BANGUN RUANGn";
cout<<"========================================================n
";
cout<<"1. Bangun Datarn";
cout<<"2. Bangun Ruangn";
cout<<"Pilih bangun yang akan dihitung: ";cin>>bangun;
switch(bangun)
{
case 1://BANGUN DATAR
int klp,kll,kls,klla;
cout<<"========================================================n
";
cout<<"1. Persegin";
cout<<"2. Lingkarann";
cout<<"3. Segitigan";
cout<<"4. Layang-layangn";
cout<<"Pilih bangun yang akan dihitung: ";cin>>bangundatar;
switch(bangundatar)
{
case 1://PERSEGI
float sp,kp,lp;
cout<<"========================================================n
";
cout<<"1. Kelilingn";
cout<<"2. Luasn";
cout<<"Pilih yang akan dihitung: ";cin>>klp;
switch(klp)
{
case 1:
cout<<"========================================================n
";
cout<<"Keliling Persegin";
cout<<"========================================================n
";
cout<<"Masukkan sisi= ";cin>>sp;
kp=4*sp;
cout<<"Maka keliling persegi= "<<kp;
break;
case 2:
cout<<"========================================================n
";
cout<<"Luas persegin";
cout<<"========================================================n
";
cout<<"Masukkan sisi= ";cin>>lp;
lp=sp*sp;
cout<<"Maka luas persegi= "<<lp;

}
break;
case 2://LINGKARAN
float dl,rl,kl,ll;
cout<<"========================================================n
";
cout<<"1. Kelilingn";
cout<<"2. Luasn";
cout<<"Pilih yang akan dihitung: ";cin>>klp;
switch(kll)
{
case 1:
cout<<"========================================================n
";
cout<<"Keliling lingkarann";
cout<<"========================================================n
";
cout<<"Masukkan diameter= ";cin>>dl;
kl=3.14*dl;
cout<<"Maka keliling lingkaran= "<<kl;
break;
case 2:
cout<<"========================================================n
";
cout<<"Luas lingkarann";
cout<<"========================================================n
";
cout<<"Masukkan jari-jari= ";cin>>rl;
ll=3.13*rl*rl;
cout<<"Maka luas lingkaran= "<<ll;
}
break;
case 3://SEGITIGA
float s1,s2,s3,as,ts,ks,ls;
cout<<"========================================================n
";
cout<<"1. Kelilingn";
cout<<"2. Luasn";
cout<<"Pilih yang akan dihitung: ";cin>>klp;
switch(klp)
{
case 1:
cout<<"========================================================n
";
cout<<"Keliling segitigan";
cout<<"========================================================n
";
cout<<"Masukkan sisi 1= ";cin>>s1;
cout<<"Masukkan sisi 2= ";cin>>s2;
cout<<"Masukkan sisi 3= ";cin>>s3;
ks=s1+s2+s3;
cout<<"Maka keliling segitiga= "<<ks;
break;
case 2:
cout<<"========================================================n
";
cout<<"Luas segitigan";
cout<<"========================================================n
";
cout<<"Masukkan alas= ";cin>>as;
cout<<"Masukkan tinggi= ";cin>>ts;
ls=0.5*as*ts;
cout<<"Maka luas segitiga= "<<ls;
}
break;
case 4://LAYANG-LAYANG
float d1,d2,si1,si2,kla,lla;
cout<<"========================================================n
";
cout<<"1. Kelilingn";
cout<<"2. Luasn";
cout<<"Pilih yang akan dihitung: ";cin>>klla;
switch(klla)
{
case 1:
cout<<"========================================================n
";
cout<<"Keliling Layang-layangn";
cout<<"========================================================n
";
cout<<"Masukkan sisi 1= ";cin>>si1;
cout<<"Masukkan sisi 2= ";cin>>si2;
kla=(2*si1)+(2*si2);
cout<<"Maka keliling persegi= "<<kp;
break;
case 2:
cout<<"========================================================n
";
cout<<"Luas Layang-layangn";
cout<<"========================================================n
";
cout<<"Masukkan diagonal 1= ";cin>>d1;
cout<<"Masukkan diagonal 2= ";cin>>d2;
lla=0.5*d1*d2;
cout<<"Maka luas Layang-layang= "<<lla;

}
}
break;
case 2://BANGUN RUANG
int lvk,lvba,lvt,lvbo;
cout<<"========================================================n
";
cout<<"1. Kubusn";
cout<<"2. Balokn";
cout<<"3. Tabungn";
cout<<"4. Bolan";
cout<<"Pilih bangun yang akan dihitung: ";cin>>bangunruang;
switch(bangunruang)
{
case 1://KUBUS
float rk,lpk,vk;
cout<<"========================================================n
";
cout<<"1. Luas permukaann";
cout<<"2. Volumen";
cout<<"Pilih yang akan dihitung: ";cin>>lvk;
switch(lvk)
{
case 1:
cout<<"========================================================n
";
cout<<"Luas Permukaan Kubusn";
cout<<"========================================================n
";
cout<<"Masukkan rusuk= ";cin>>rk;
lpk=6*rk*rk;
cout<<"Maka

luas

permukaan

kubus=

"<<lpk;
break;
case 2:
cout<<"========================================================n
";
cout<<"Volume Kubusn";
cout<<"========================================================n
";
cout<<"Masukkan rusuk= ";cin>>rk;
vk=rk*rk*rk;
cout<<"Maka volume kubus= "<<vk;
}
break;
case 2://BALOK
float pba,lba,tba,lpba,vba;
cout<<"========================================================n
";
cout<<"1. Luas Permukaann";
cout<<"2. Volumen";
cout<<"Pilih yang akan dihitung: ";cin>>lvba;
switch(lvba)
{
case 1:
cout<<"========================================================n
";
cout<<"Luas Permukaan Balokn";
cout<<"========================================================n
";
cout<<"Masukkan

panjang

balok=

";cin>>pba;
cout<<"Masukkan lebar balok= ";cin>>lba;
cout<<"Masukkan tinggi balok= ";cin>>tba;
lpba=2*(pba*lba)+(pba*tba)+(lba*tba);
cout<<"Maka
"<<lpba;
break;

luas

permukaan

balok=
case 2:
cout<<"========================================================n
";
cout<<"Volume Balokn";
cout<<"========================================================n
";
cout<<"Masukkan

panjang

balok=

";cin>>pba;
cout<<"Masukkan lebar balok= ";cin>>lba;
cout<<"Masukkan tinggi balok= ";cin>>tba;
vba=pba*lba*tba;
cout<<"Maka volume balok= "<<vba;
}
break;
case 3://TABUNG
float rt,tt,lpt,vt;
cout<<"========================================================n
";
cout<<"1. Luas Permukaann";
cout<<"2. Volumen";
cout<<"Pilih yang akan dihitung: ";cin>>lvt;
switch(lvt)
{
case 1:
cout<<"========================================================n
";
cout<<"Luas Permukaan Tabungn";
cout<<"========================================================n
";
cout<<"Masukkan

jari-jari

tabung=

";cin>>rt;
cout<<"Masukkan tinggi tabung= ";cin>>tt;
lpt=2*3.14*rt*(rt+tt);
cout<<"Maka

luas

permukaan

tabung=

"<<lpt;
break;
case 2:
cout<<"========================================================n
";
cout<<"Volume Tabungn";
cout<<"========================================================n
";
cout<<"Masukkan

jari-jari

tabung=

";cin>>rt;
cout<<"Masukkan tinggi tabung= ";cin>>tt;
vt=3.14*rt*rt*tt;
cout<<"Maka volume tabung= "<<vt;
}
break;
case 4://BOLA
float rbo,lpbo,vbo;
cout<<"========================================================n
";
cout<<"1. Luas Permukaann";
cout<<"2. Volumen";
cout<<"Pilih yang akan dihitung: ";cin>>lvbo;
switch(lvbo)
{
case 1:
cout<<"========================================================n
";
cout<<"Luas Permukaan Bolan";
cout<<"========================================================n
";
cout<<"Masukkan jari-jari= ";cin>>rbo;
lpbo=4*3.14*rbo*rbo;
cout<<"Maka

luas

permukaan

bola=

"<<lpbo;
break;
case 2:
cout<<"========================================================n
";
cout<<"Volume Bolan";
cout<<"========================================================n
";
cout<<"Masukkan jari-jari bola= ";cin>>rbo;
vbo=1.33*3.14*rbo*rbo;
cout<<"Maka volume bola= "<<vbo;

}
}
}
cout<<"n---------------------------------------------------------n";
cout<<"Apakah Anda ingin mengulang?(Y/T)";cin>>ulang;
cout<<endl;
switch(ulang)
{
case 'Y':
goto menu;
break;
case 'y':
goto menu;
break;
case 'T':
break;
case 't':
break;
default:
cout<<"Masukkan salahn";
cout<<"Apakah Anda ingin mengulang?(Y/T)";cin>>ulang;
cout<<endl;
goto menu;
}
}

Mais conteúdo relacionado

Mais procurados

Concurrent applications with free monads and stm
Concurrent applications with free monads and stmConcurrent applications with free monads and stm
Concurrent applications with free monads and stmAlexander Granin
 
Memory leak in Javascript - Renan Bastos
Memory leak in Javascript - Renan BastosMemory leak in Javascript - Renan Bastos
Memory leak in Javascript - Renan BastosTchelinux
 
Compose Async with RxJS
Compose Async with RxJSCompose Async with RxJS
Compose Async with RxJSKyung Yeol Kim
 
Full-Stack JavaScript with Node.js
Full-Stack JavaScript with Node.jsFull-Stack JavaScript with Node.js
Full-Stack JavaScript with Node.jsMichael Lehmann
 
Using Change Streams to Keep Up with Your Data
Using Change Streams to Keep Up with Your DataUsing Change Streams to Keep Up with Your Data
Using Change Streams to Keep Up with Your DataEvan Rodd
 
RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術名辰 洪
 
c++ program for Canteen management
c++ program for Canteen managementc++ program for Canteen management
c++ program for Canteen managementSwarup Kumar Boro
 
java experiments and programs
java experiments and programsjava experiments and programs
java experiments and programsKaruppaiyaa123
 
Think Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJSThink Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJSAdam L Barrett
 
Node.js and angular js
Node.js and angular jsNode.js and angular js
Node.js and angular jsHyungKuIm
 
RxJS 5 in Depth
RxJS 5 in DepthRxJS 5 in Depth
RxJS 5 in DepthC4Media
 
FwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.jsFwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.jsTimur Shemsedinov
 
Asynchronous programming with java script and node.js
Asynchronous programming with java script and node.jsAsynchronous programming with java script and node.js
Asynchronous programming with java script and node.jsTimur Shemsedinov
 
Node.js middleware: Never again!
Node.js middleware: Never again!Node.js middleware: Never again!
Node.js middleware: Never again!Timur Shemsedinov
 
What they don't tell you about JavaScript
What they don't tell you about JavaScriptWhat they don't tell you about JavaScript
What they don't tell you about JavaScriptRaphael Cruzeiro
 
rx.js make async programming simpler
rx.js make async programming simplerrx.js make async programming simpler
rx.js make async programming simplerAlexander Mostovenko
 
JS Fest 2019 Node.js Antipatterns
JS Fest 2019 Node.js AntipatternsJS Fest 2019 Node.js Antipatterns
JS Fest 2019 Node.js AntipatternsTimur Shemsedinov
 

Mais procurados (20)

Concurrent applications with free monads and stm
Concurrent applications with free monads and stmConcurrent applications with free monads and stm
Concurrent applications with free monads and stm
 
The jsdom
The jsdomThe jsdom
The jsdom
 
Memory leak in Javascript - Renan Bastos
Memory leak in Javascript - Renan BastosMemory leak in Javascript - Renan Bastos
Memory leak in Javascript - Renan Bastos
 
Compose Async with RxJS
Compose Async with RxJSCompose Async with RxJS
Compose Async with RxJS
 
Full-Stack JavaScript with Node.js
Full-Stack JavaScript with Node.jsFull-Stack JavaScript with Node.js
Full-Stack JavaScript with Node.js
 
Using Change Streams to Keep Up with Your Data
Using Change Streams to Keep Up with Your DataUsing Change Streams to Keep Up with Your Data
Using Change Streams to Keep Up with Your Data
 
RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術RxJS - 封裝程式的藝術
RxJS - 封裝程式的藝術
 
c++ program for Canteen management
c++ program for Canteen managementc++ program for Canteen management
c++ program for Canteen management
 
java experiments and programs
java experiments and programsjava experiments and programs
java experiments and programs
 
Think Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJSThink Async: Asynchronous Patterns in NodeJS
Think Async: Asynchronous Patterns in NodeJS
 
Node.js and angular js
Node.js and angular jsNode.js and angular js
Node.js and angular js
 
RxJS 5 in Depth
RxJS 5 in DepthRxJS 5 in Depth
RxJS 5 in Depth
 
FwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.jsFwDays 2021: Metarhia Technology Stack for Node.js
FwDays 2021: Metarhia Technology Stack for Node.js
 
dSS API by example
dSS API by exampledSS API by example
dSS API by example
 
Asynchronous programming with java script and node.js
Asynchronous programming with java script and node.jsAsynchronous programming with java script and node.js
Asynchronous programming with java script and node.js
 
Rxjs vienna
Rxjs viennaRxjs vienna
Rxjs vienna
 
Node.js middleware: Never again!
Node.js middleware: Never again!Node.js middleware: Never again!
Node.js middleware: Never again!
 
What they don't tell you about JavaScript
What they don't tell you about JavaScriptWhat they don't tell you about JavaScript
What they don't tell you about JavaScript
 
rx.js make async programming simpler
rx.js make async programming simplerrx.js make async programming simpler
rx.js make async programming simpler
 
JS Fest 2019 Node.js Antipatterns
JS Fest 2019 Node.js AntipatternsJS Fest 2019 Node.js Antipatterns
JS Fest 2019 Node.js Antipatterns
 

Destaque

GEMs - Insights from Emerging Markets - Issue 3
GEMs - Insights from Emerging Markets - Issue 3GEMs - Insights from Emerging Markets - Issue 3
GEMs - Insights from Emerging Markets - Issue 3TNS
 
Collection of Interviews on US Muslims
Collection of Interviews on US MuslimsCollection of Interviews on US Muslims
Collection of Interviews on US MuslimsOnIslam
 
Professional Competency
Professional CompetencyProfessional Competency
Professional CompetencyRTaughrin
 
A Busca Da Fragilidade Das Redes Sem Fio
A Busca Da Fragilidade Das Redes Sem FioA Busca Da Fragilidade Das Redes Sem Fio
A Busca Da Fragilidade Das Redes Sem FioCelso Corazza
 
Sejarah Perkembangan Komputer
Sejarah Perkembangan KomputerSejarah Perkembangan Komputer
Sejarah Perkembangan KomputerSanSan Yagyoo
 
Publicidad tema 5 posicionamiento
Publicidad tema 5 posicionamientoPublicidad tema 5 posicionamiento
Publicidad tema 5 posicionamientoJerry Arketype
 

Destaque (8)

GEMs - Insights from Emerging Markets - Issue 3
GEMs - Insights from Emerging Markets - Issue 3GEMs - Insights from Emerging Markets - Issue 3
GEMs - Insights from Emerging Markets - Issue 3
 
Collection of Interviews on US Muslims
Collection of Interviews on US MuslimsCollection of Interviews on US Muslims
Collection of Interviews on US Muslims
 
Konversi suhu
Konversi suhuKonversi suhu
Konversi suhu
 
Bash Programming
Bash ProgrammingBash Programming
Bash Programming
 
Professional Competency
Professional CompetencyProfessional Competency
Professional Competency
 
A Busca Da Fragilidade Das Redes Sem Fio
A Busca Da Fragilidade Das Redes Sem FioA Busca Da Fragilidade Das Redes Sem Fio
A Busca Da Fragilidade Das Redes Sem Fio
 
Sejarah Perkembangan Komputer
Sejarah Perkembangan KomputerSejarah Perkembangan Komputer
Sejarah Perkembangan Komputer
 
Publicidad tema 5 posicionamiento
Publicidad tema 5 posicionamientoPublicidad tema 5 posicionamiento
Publicidad tema 5 posicionamiento
 

Semelhante a C++ Program to Calculate Areas and Volumes of Shapes

Tugas praktikukm pemrograman c++
Tugas praktikukm  pemrograman c++Tugas praktikukm  pemrograman c++
Tugas praktikukm pemrograman c++Dendi Riadi
 
Programming - Marla Fuentes
Programming - Marla FuentesProgramming - Marla Fuentes
Programming - Marla Fuentesmfuentessss
 
Laporan pd kelompok 6
Laporan pd kelompok 6Laporan pd kelompok 6
Laporan pd kelompok 6phoe3
 
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloadingkinan keshkeh
 
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDYDATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDYMalikireddy Bramhananda Reddy
 
Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods kinan keshkeh
 
This what Im suppose to do and this is what I have so far.In thi.pdf
This what Im suppose to do and this is what I have so far.In thi.pdfThis what Im suppose to do and this is what I have so far.In thi.pdf
This what Im suppose to do and this is what I have so far.In thi.pdfkavithaarp
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101premrings
 

Semelhante a C++ Program to Calculate Areas and Volumes of Shapes (20)

Project in programming
Project in programmingProject in programming
Project in programming
 
Tugas praktikukm pemrograman c++
Tugas praktikukm  pemrograman c++Tugas praktikukm  pemrograman c++
Tugas praktikukm pemrograman c++
 
Include
IncludeInclude
Include
 
C++ file
C++ fileC++ file
C++ file
 
C++ file
C++ fileC++ file
C++ file
 
Hospital management
Hospital managementHospital management
Hospital management
 
Hospital management
Hospital managementHospital management
Hospital management
 
C++ TUTORIAL 3
C++ TUTORIAL 3C++ TUTORIAL 3
C++ TUTORIAL 3
 
Algo
AlgoAlgo
Algo
 
Programming - Marla Fuentes
Programming - Marla FuentesProgramming - Marla Fuentes
Programming - Marla Fuentes
 
Laporan pd kelompok 6
Laporan pd kelompok 6Laporan pd kelompok 6
Laporan pd kelompok 6
 
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading2 BytesC++ course_2014_c3_ function basics&parameters and overloading
2 BytesC++ course_2014_c3_ function basics&parameters and overloading
 
Oops lab manual
Oops lab manualOops lab manual
Oops lab manual
 
C++ practical
C++ practicalC++ practical
C++ practical
 
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDYDATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
 
Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods
 
This what Im suppose to do and this is what I have so far.In thi.pdf
This what Im suppose to do and this is what I have so far.In thi.pdfThis what Im suppose to do and this is what I have so far.In thi.pdf
This what Im suppose to do and this is what I have so far.In thi.pdf
 
DataTypes.ppt
DataTypes.pptDataTypes.ppt
DataTypes.ppt
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
 
Coding gaji
Coding gajiCoding gaji
Coding gaji
 

Último

18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 

Último (20)

18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 

C++ Program to Calculate Areas and Volumes of Shapes