Ajutor:
Vă propun următoarea problemă ( de realizat în C++ folosind structura repetitivă, iar în Python folosind repetitiva) - problemă redactată în pseudocod:



cât timp x != 0 execută { s= s + x%10; x=x/10; }

Răspuns :

#include <iostream>

using namespace std;

int main()

{

   int x, s = 0;

   cin >> x;

   while (x) {

       s += x % 10;

       x /= 10;

   }

   cout << s;

   return 0;

}