Mn giúp em tìm độ phức tạp của thuật toán này với ạ, có thể giải thích chi tiết giúp em ạ, thanks mn
// ThuatToan4
int main(){
int n =10; // you can change the value of n
int sum = 0;
int j = 1;
float pie = 3.14;
for (int i = 0; i < n; i++){
cout << pie << endl;
while (j < i){
sum+=1;
j*=2;
}
}
cout << sum << endl;
}