Скачать презентацию Функции Короче всё что надо знать о функциях Скачать презентацию Функции Короче всё что надо знать о функциях

Функции.pptx

  • Количество слайдов: 55

Функции Короче, всё, что надо знать о функциях, поясню… Функции Короче, всё, что надо знать о функциях, поясню…

В математике • • y=f(x)=3*x Допустим x=2, тогда y=6 x=2, f(2)=3*2=6, y=6; Допустим x=5, В математике • • y=f(x)=3*x Допустим x=2, тогда y=6 x=2, f(2)=3*2=6, y=6; Допустим x=5, тогда y=15 x=5, f(5)=3*5=15, y=15 Рассмотрим пока с x=2

Из чего состоит функция #include <windows. h> #include <iostream. h> #include <math. h> int Из чего состоит функция #include #include #include int f(int x); int main () { } Объявление функции f (Всё, что отмечено красным) Указываем, что она есть, то есть объявляем ее (принцип похож на объявление переменной). int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

Объявление можно опустить С объявлением: объявление; Здесь определение идёт после main int main () Объявление можно опустить С объявлением: объявление; Здесь определение идёт после main int main () {…} определение {…} Без объявления: определение {…} Здесь определение идёт перед main int main () {…}

Из чего состоит функция #include <windows. h> #include <iostream. h> #include <math. h> int Из чего состоит функция #include #include #include int f(int x); int main () { } int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

Вызов функции #include <windows. h> #include <iostream. h> #include <math. h> int f(int x); Вызов функции #include #include #include int f(int x); int main () { int y; y=f(2) ; } int f(int x) { } Вызов функции (Всё, что отмечено оранжевым) Это место, где мы пользуемся функцией. cout<<"x = 2; y = 3*x = 3*2 = "<

Процесс #include <windows. h> #include <iostream. h> #include <math. h> Создаем переменную y, которая Процесс #include #include #include Создаем переменную y, которая отвечает за int f(int x); значение функции при некотором значении x. int main () { Присваиваем y значение переменной. int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> int f(int x); int main #include #include #include int f(int x); int main () { Происходит вызов функции, где x =2. int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> int f(int x); int main #include #include #include int f(int x); int main () { Происходит вызов функции, где x =2. int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> int f(int x); int main #include #include #include int f(int x); int main () Возвращаем 6 или же значение { функции при x=2 (то есть int y; подставляем 6 вместо f(2) ) y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> int f(int x); int main #include #include #include int f(int x); int main () Возвращаем 6 или же значение { функции при x=2 (то есть int y; подставляем 6 вместо f(2) ) y=6; cout<<"x = 2; y = 3*x = 3*2 = "<

Результат Результат

В математике • • y=f(x)=3*x Допустим x=2, тогда y=6 x=2, f(2)=3*2=6, y=6; Допустим x=5, В математике • • y=f(x)=3*x Допустим x=2, тогда y=6 x=2, f(2)=3*2=6, y=6; Допустим x=5, тогда y=15 x=5, f(5)=3*5=15, y=15 Теперь рассмотрим оба примера сразу

#include <windows. h> #include <iostream. h> #include <math. h> Процесс int f(int x); int #include #include #include Процесс int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> X=2 int f(int x); int #include #include #include X=2 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> f(x)=f(2) int f(int x); int #include #include #include f(x)=f(2) int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> f(2)=3*2 int f(int x); int #include #include #include f(2)=3*2 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> f(2)=6 int f(int x); int #include #include #include f(2)=6 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> y=6 int f(int x); int #include #include #include y=6 int f(int x); int main () { int y; y=6; cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> X=5 int f(int x); int #include #include #include X=5 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> f(x)=f(5) int f(int x); int #include #include #include f(x)=f(5) int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> f(5)=3*15 int f(int x); int #include #include #include f(5)=3*15 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> f(5)=15 int f(int x); int #include #include #include f(5)=15 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

#include <windows. h> #include <iostream. h> #include <math. h> y=15 int f(int x); int #include #include #include y=15 int f(int x); int main () { int y; y=f(2); cout<<"x = 2; y = 3*x = 3*2 = "<

Результат Результат

Рассмотрим пример посложнее • • • y=f 1(m, n) – здесь уже не 1, Рассмотрим пример посложнее • • • y=f 1(m, n) – здесь уже не 1, а 2 переменных y=f 2(m, n) – здесь тоже f 1(m, n)=(m+n)/2 – найдём среднее арифметическое f 2(m, n)=(m-n)/2 – найдем полуразность Будем подставлять не просто числа, а числа в буквенном виде. То есть не f 1(8, 4), а a=8, b=4, f 1(a, b)

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(8, 4); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(8, 4); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=6; cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

Результат Результат

 • • • • • • • #include <windows. h> #include <iostream. h> • • • • • • • #include #include int f 1(int m, int n); int f 2(int m, int n); int main () { int y; int a=8, b=4; y=f 1(a, b); cout<

Void • Тип void не возвращает значение, то есть в теле функции не нужно Void • Тип void не возвращает значение, то есть в теле функции не нужно писать return, а сама функция является набором команд. void f(){… return значение; } void f(int x){… return значение; }

Совет • Нужно проверить, не стоит ли точка с запятой после имени в определении Совет • Нужно проверить, не стоит ли точка с запятой после имени в определении функции: int f 1(int m, int n); Компилятор выдаёт следующую ошибку: error C 2447: missing function header (old-style formal list? )

Чем полезны функции • Они помогают сократить программу. • Вот программа без функций: #include Чем полезны функции • Они помогают сократить программу. • Вот программа без функций: #include int main() { cout<<“======---======“<

cout<<“======---======“<<endl; cout<<“i=“<<3<<endl; cout<<“======---======“<<endl; cout<<“j=“<<3<<endl; cout<<“======---======“<<endl; cout<<“k=“<<5<<endl; cout<<“======---======“<<endl; cout<<“i=“<<3<<endl; cout<<“======---======“<<endl; cout<<“j=“<<0<<endl; cout<<“======---======“<<endl; cout<<“k=“<<4<<endl; cout<<“======---======“<<endl; cout<<“i=“<<8<<endl; cout<<“======---======“<

cout<<“======---======“<<endl; cout<<“i=“<<6<<endl; cout<<“======---======“<<endl; cout<<“j=“<<5<<endl; cout<<“======---======“<<endl; cout<<“k=“<<3<<endl; cout<<“======---======“<<endl; cout<<“i=“<<9<<endl; cout<<“======---======“<<endl; cout<<“j=“<<0<<endl; cout<<“======---======“<<endl; cout<<“k=“<<0<<endl; cout<<“======---======“<<endl; cout<<“i=“<<2<<endl; cout<<“======---======“<

 • То же самое, но код короче, так как присутствует функция: #include <iostream. • То же самое, но код короче, так как присутствует функция: #include void f(int i, int j, int k) { cout<<“======---======“<