" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include<conio.h>
using namespace std;
int main()
{
float licznik=1,liczba,wynik=0,a;
for(int a=0;a<=9;a++)
{
cout<<"Podaj "<<licznik<<" liczbe"<<endl;
cin>>liczba;
licznik=licznik+1;
wynik=wynik+liczba;
}
cout<<"Suma liczb ktore podales to: "<<wynik<<endl;
getch();
return 0;
}
Użyłem pętli, ale bez nich też da się to zrobić
Kod wklej do kompilatora i skompiluj