diff --git a/1.cpp b/1.cpp new file mode 100644 index 0000000..de237ef --- /dev/null +++ b/1.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + cout << "Hello, world!" << endl; + return 0; +} \ No newline at end of file diff --git a/1.go b/1.go new file mode 100644 index 0000000..cb75a54 --- /dev/null +++ b/1.go @@ -0,0 +1,32 @@ +package main + +import ( + "fmt" + "math" +) + +func z1() { + fmt.Printf("Задача 1: \n") + for i := 0.26; i < 0.67; i += 0.08 { + x := math.Pow(math.Asin(i), 2) + y := math.Pow(math.Acos(i), 4) + c := math.Pow((x + y), 3) + fmt.Printf("%.2f \n", c) + } +} + +func z2() { + fmt.Printf("Задача 2: \n") + v := [5]float64{0.1, 0.35, 0.4, 0.55, 0.6} + for i := 0; i < 5; i++ { + x := math.Pow(math.Asin(v[i]), 2) + y := math.Pow(math.Acos(v[i]), 4) + c := math.Pow((x + y), 3) + fmt.Printf("%.2f \n", c) + } +} + +func main() { + defer z2() + z1() +} diff --git a/README.md b/README.md index 714ee32..015f1d9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Вот сюда нужно будет в первой работе с гитом добавит свое ФИО -## ФИО +Петренко Марк Владимирович ## Работа с репозиторием @@ -14,8 +14,8 @@ ## Примеры работы с markdown -Обычный текст. -Еще текст на той же строке (в том же абзаце). +Петренко Марк Владимирович + Текст в новом абзаце diff --git a/Untitled-1.txt b/Untitled-1.txt new file mode 100644 index 0000000..6598fdd --- /dev/null +++ b/Untitled-1.txt @@ -0,0 +1,6 @@ +#include +void main() +{ +printf('Hello World!') +return 0; +}