For 9. Даны два целых числа A и B (A < B). Найти сумму квадратов всех целых чисел от A до B включительно.

Решение на Python 3

import random

A = random.randrange(10)
n = random.randrange(10)+1
B = A + n
print('A = ', A)
print('B = ', B)

S = 0
for i in range(A,B+1,1):
S += i*i
print(i," : ",i*i," : ",S)
print("Sum of squares = ",S)

Решение на C++

#include <bits/stdc++.h>
using namespace std;

int main() {
srand((int)time(0));
int A, B;
A = rand() % 10;
B = A + (rand() % 10 + 1);
cout << "Number A: " << A << endl;
cout << "Number B: " << B << endl;

long S = 0;
for(int i = A; i <= B; i++) {
S += i*i;
cout << i <<" : " << i*i <<" : " << S << endl;
}
cout << "Sum of squares = " << S << endl;
return 0;
}