December 2018 1 6 Report
Program ma sumować ;iczby ujemne, aż ich suma będzie większa od -300 i mam tu jakiś błąd, proszę o pomoc w poprawie tego programu. - programowanie w C, pętle while i do while

int main()
{ int a, suma;
suma=0;
do {
printf("podaj liczbe:\n");
scanf("%d",&a);
if(a<0) {
suma=suma+a;
printf("suma wynosi:%d\n",suma);
}
else {
printf("suma wynosi:%d\n",suma);
}


} while (suma<-300);

return 0;
}
More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.