Napisz schemat programu, który będzie liczył sumę wszystkich liczb parzystych dwucyfrowych.. Język C++.. Potrzebne na wczoraj.. Z góry dziękuję
" 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 suma=0;
for(int i=10;i<100;i+=2) suma+=i;
cout << suma << endl;
system("pause");
return 0;
}