+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex2/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex2/script.js"
new file mode 100644
index 00000000..881f8a3d
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex2/script.js"
@@ -0,0 +1,8 @@
+function troca() {
+ let valor1 = document.getElementById("teste").value;
+ let valor2 = document.getElementById("teste1").value;
+ document.getElementById("teste").value = valor2;
+ document.getElementById("teste1").value = valor1;
+
+
+}
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex2/style.css" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex2/style.css"
new file mode 100644
index 00000000..e69de29b
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex3/index.html" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex3/index.html"
new file mode 100644
index 00000000..5273a73d
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex3/index.html"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex3/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex3/script.js"
new file mode 100644
index 00000000..c565b344
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex3/script.js"
@@ -0,0 +1,12 @@
+function check() {
+ var numero = document.getElementById("phoneNumber").value
+ if (numero.length > 13) {
+ alert("Formato não aceito, siga o exemplo abaixo:\n(00)0000-0000")
+ }
+ else if (numero.length < 13) {
+ alert("Formato não aceito, siga o exemplo abaixo:\n(00)0000-0000")
+ }
+ else if (numero[0] == "(" && numero[3] == ")" && numero[8] === "-") {
+ alert("Formato aceito")
+ }
+}
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex4/index.html" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex4/index.html"
new file mode 100644
index 00000000..653c2aa4
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex4/index.html"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+ Insira aqui a quantidade de pessoas
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex4/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex4/script.js"
new file mode 100644
index 00000000..c6a69b59
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex4/script.js"
@@ -0,0 +1,32 @@
+function calculate(){
+ var preco
+ var desconto
+ var resultado
+ var qtd = Number(document.getElementById("pessoas").value)
+ let condicao = Number($('input[name="turno"]:checked').val())
+ if (condicao == 200) {
+ if (qtd <= 50) {
+ preco = 200;
+ resultado = qtd*preco;
+ $("#result").html("Valor total: " + resultado);
+ } else {
+ preco = 200 - 40/100*200;
+ resultado = qtd * preco;
+ $("#result").html("Valor total: " + resultado);
+ }
+ }
+ else if (condicao == 100) {
+ if (qtd <= 50) {
+ preco = 100;
+ resultado = qtd*preco;
+ $("#result").html("Valor total: " + resultado);
+ } else {
+ preco = 100 - 20/100*100;
+ resultado = qtd * preco;
+ $("#result").html("Valor total: " + resultado);
+ }
+ }
+ else {
+ $("#result").html("Você não selecionou um período ainda")
+ }
+}
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex5/index.html" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex5/index.html"
new file mode 100644
index 00000000..b7d643a8
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex5/index.html"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex5/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex5/script.js"
new file mode 100644
index 00000000..46a3d215
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Exs7_personaliza\303\247\303\243o/Ex5/script.js"
@@ -0,0 +1,88 @@
+var aluno = 1;
+var inputs = ``;
+var i = 1;
+var final = ""
+var string = `
`
+function adicionar() {
+ var qtd = Number($("#valorEntrada").val());
+ if (qtd != null && qtd != NaN) {
+ let i = 0;
+ while (i != qtd) {
+ final += `
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex2/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex2/script.js"
new file mode 100644
index 00000000..881f8a3d
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex2/script.js"
@@ -0,0 +1,8 @@
+function troca() {
+ let valor1 = document.getElementById("teste").value;
+ let valor2 = document.getElementById("teste1").value;
+ document.getElementById("teste").value = valor2;
+ document.getElementById("teste1").value = valor1;
+
+
+}
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex2/style.css" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex2/style.css"
new file mode 100644
index 00000000..e69de29b
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex3/index.html" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex3/index.html"
new file mode 100644
index 00000000..5273a73d
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex3/index.html"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex3/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex3/script.js"
new file mode 100644
index 00000000..c565b344
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex3/script.js"
@@ -0,0 +1,12 @@
+function check() {
+ var numero = document.getElementById("phoneNumber").value
+ if (numero.length > 13) {
+ alert("Formato não aceito, siga o exemplo abaixo:\n(00)0000-0000")
+ }
+ else if (numero.length < 13) {
+ alert("Formato não aceito, siga o exemplo abaixo:\n(00)0000-0000")
+ }
+ else if (numero[0] == "(" && numero[3] == ")" && numero[8] === "-") {
+ alert("Formato aceito")
+ }
+}
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex4/index.html" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex4/index.html"
new file mode 100644
index 00000000..653c2aa4
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex4/index.html"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+ Insira aqui a quantidade de pessoas
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex4/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex4/script.js"
new file mode 100644
index 00000000..c6a69b59
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex4/script.js"
@@ -0,0 +1,32 @@
+function calculate(){
+ var preco
+ var desconto
+ var resultado
+ var qtd = Number(document.getElementById("pessoas").value)
+ let condicao = Number($('input[name="turno"]:checked').val())
+ if (condicao == 200) {
+ if (qtd <= 50) {
+ preco = 200;
+ resultado = qtd*preco;
+ $("#result").html("Valor total: " + resultado);
+ } else {
+ preco = 200 - 40/100*200;
+ resultado = qtd * preco;
+ $("#result").html("Valor total: " + resultado);
+ }
+ }
+ else if (condicao == 100) {
+ if (qtd <= 50) {
+ preco = 100;
+ resultado = qtd*preco;
+ $("#result").html("Valor total: " + resultado);
+ } else {
+ preco = 100 - 20/100*100;
+ resultado = qtd * preco;
+ $("#result").html("Valor total: " + resultado);
+ }
+ }
+ else {
+ $("#result").html("Você não selecionou um período ainda")
+ }
+}
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex5/index.html" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex5/index.html"
new file mode 100644
index 00000000..b7d643a8
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex5/index.html"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex5/script.js" "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex5/script.js"
new file mode 100644
index 00000000..46a3d215
--- /dev/null
+++ "b/04_AUT_EST_EX_OBRIGATORIOS/Semana 3/Exs7_personaliza\303\247\303\243o/Ex5/script.js"
@@ -0,0 +1,88 @@
+var aluno = 1;
+var inputs = ``;
+var i = 1;
+var final = ""
+var string = `
`
+function adicionar() {
+ var qtd = Number($("#valorEntrada").val());
+ if (qtd != null && qtd != NaN) {
+ let i = 0;
+ while (i != qtd) {
+ final += `
+
+
+
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex2/script.js" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex2/script.js"
new file mode 100644
index 00000000..881f8a3d
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex2/script.js"
@@ -0,0 +1,8 @@
+function troca() {
+ let valor1 = document.getElementById("teste").value;
+ let valor2 = document.getElementById("teste1").value;
+ document.getElementById("teste").value = valor2;
+ document.getElementById("teste1").value = valor1;
+
+
+}
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex2/style.css" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex2/style.css"
new file mode 100644
index 00000000..e69de29b
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex3/index.html" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex3/index.html"
new file mode 100644
index 00000000..5273a73d
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex3/index.html"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex3/script.js" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex3/script.js"
new file mode 100644
index 00000000..c565b344
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex3/script.js"
@@ -0,0 +1,12 @@
+function check() {
+ var numero = document.getElementById("phoneNumber").value
+ if (numero.length > 13) {
+ alert("Formato não aceito, siga o exemplo abaixo:\n(00)0000-0000")
+ }
+ else if (numero.length < 13) {
+ alert("Formato não aceito, siga o exemplo abaixo:\n(00)0000-0000")
+ }
+ else if (numero[0] == "(" && numero[3] == ")" && numero[8] === "-") {
+ alert("Formato aceito")
+ }
+}
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex4/index.html" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex4/index.html"
new file mode 100644
index 00000000..653c2aa4
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex4/index.html"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+ Insira aqui a quantidade de pessoas
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex4/script.js" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex4/script.js"
new file mode 100644
index 00000000..c6a69b59
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex4/script.js"
@@ -0,0 +1,32 @@
+function calculate(){
+ var preco
+ var desconto
+ var resultado
+ var qtd = Number(document.getElementById("pessoas").value)
+ let condicao = Number($('input[name="turno"]:checked').val())
+ if (condicao == 200) {
+ if (qtd <= 50) {
+ preco = 200;
+ resultado = qtd*preco;
+ $("#result").html("Valor total: " + resultado);
+ } else {
+ preco = 200 - 40/100*200;
+ resultado = qtd * preco;
+ $("#result").html("Valor total: " + resultado);
+ }
+ }
+ else if (condicao == 100) {
+ if (qtd <= 50) {
+ preco = 100;
+ resultado = qtd*preco;
+ $("#result").html("Valor total: " + resultado);
+ } else {
+ preco = 100 - 20/100*100;
+ resultado = qtd * preco;
+ $("#result").html("Valor total: " + resultado);
+ }
+ }
+ else {
+ $("#result").html("Você não selecionou um período ainda")
+ }
+}
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex5/index.html" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex5/index.html"
new file mode 100644
index 00000000..b7d643a8
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex5/index.html"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/curriculo/Exs7_personaliza\303\247\303\243o/Ex5/script.js" "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex5/script.js"
new file mode 100644
index 00000000..46a3d215
--- /dev/null
+++ "b/curriculo/Exs7_personaliza\303\247\303\243o/Ex5/script.js"
@@ -0,0 +1,88 @@
+var aluno = 1;
+var inputs = ``;
+var i = 1;
+var final = ""
+var string = `
`
+function adicionar() {
+ var qtd = Number($("#valorEntrada").val());
+ if (qtd != null && qtd != NaN) {
+ let i = 0;
+ while (i != qtd) {
+ final += `