Napisz kod programu w DEV-C++ sumujacego liczby wieksze od 5 sposrod 10 wprowadzonych.
Bardzo proszę o pomoc :)
#include <iostream>using namespace std;int main(){ int liczba = 0; int suma = 0; for (int x = 1; x <= 10; x++) { cout << "Podaj liczbe " << x << ": "; cin >> liczba; if (liczba > 5) { suma = suma + liczba; } } cout << "Suma: " << suma; return 0;}
http://wklej.org/id/962282/
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main()
{
int liczba = 0;
int suma = 0;
for (int x = 1; x <= 10; x++)
{
cout << "Podaj liczbe " << x << ": ";
cin >> liczba;
if (liczba > 5)
{
suma = suma + liczba;
}
}
cout << "Suma: " << suma;
return 0;
}
http://wklej.org/id/962282/