Aşağıdaki C++ programında iki sayının toplamını yapan fonksiyonun yazılmış ve iki sayının toplama işlemi gerçekleştirilmiştir.
C++ Kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | //iki sayının toplamı #include<iostream> int topla(int a, int b); using namespace std; void main() { int a, b, c, toplam, d; cout << "iki sayı girin"; cin >> a >> b; toplam = topla(a, b);// cout << "toplam=" << toplam; } int topla(int x, int y) { int sonuc; sonuc = x + y; return sonuc; } |
Alternatif yazım:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | //iki sayının toplamı #include<iostream> using namespace std; int topla(int x, int y) { int sonuc; sonuc = x + y; return sonuc; } void main() { int a, b, c, toplam, d; cout << "iki sayı girin"; cin >> a >> b; toplam = topla(a, b);// cout << "toplam=" << toplam; } |
Yorum Yap