Câu trả lời:
Python:
s = 0
i = 0
while s <= 4000:
i += 2
s += i
print(s)
C++:
#include<iostream>
using namespace std;
int main()
{
int s, i;
s = i = 0
while (s <= 4000)
{
i += 2
s += i
}
return 0;
}
Môn học
Chủ đề / Chương
Bài học