1 / 5

Ciklas FOR

Ciklas FOR. Žinomo kartojimų skaičiaus ciklas. Strukt ū ra (1). FOR (kintamojo vardas = pradinis duomuo; nurodome iki kiek vykdysime ciklą; žingsnis) ciklo sakinys;. FOR (i = 1; i < = n ; i = i + 1 ) ats = ats + i ;. Strukt ū ra (2).

justus
Download Presentation

Ciklas FOR

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Ciklas FOR Žinomo kartojimų skaičiaus ciklas

  2. Struktūra (1) FOR (kintamojo vardas = pradinis duomuo; nurodome iki kiek vykdysime ciklą; žingsnis) ciklo sakinys; FOR (i = 1; i <= n; i = i + 1) ats = ats + i;

  3. Struktūra (2) FOR (kintamojo vardas = pradinis duomuo; nurodome iki kiek vykdysime ciklą; žingsnis) { keletasciklo sakinių; } FOR (i = 1; i <= n; i = i + 1) { sakiniai, kurie vykdomi cikle; }

  4. Užduotis nr. 1 Reikia apskaičiuoti funkcijos reikšmę, kai mp < m < mg ir kinta žingsniu mz; čia mp, mg, mz – realieji skaičiai.

  5. Užduotis nr. 1 cout << "Įveskite argumento pradinę reikšmę: " << endl; cin >> mp; cout << "Įveskite argumento galinę reikšmę: " << endl; cin >> mg; cout << "Įveskite argumento kitimo žingsnio reikšmę: " << endl; cin >> mz; cout << "--------------------------------------------- " << endl; cout << "FUNKCIJOS REIKŠMIŲ SKAIČIAVIMAS: " << endl; cout << "--------------------------------------------- " << endl; for (m = mp; m <= mg; m = m + mz) { y = (m + 3)/(sqrt(m*m - 100)); cout << setw(7) << fixed << setprecision(2) << m; cout << setw(12) << fixed << setprecision(3) << y << endl; }

More Related