Answer:
D is your answer because I'm an expert
Answer:
it can balance computing resources by time
Explanation:
this this is as it involves multiprogramming
Answer:
yes you should get a 10 bc it not to much and u can still get something cool
Answer:
#include<iostream>
int main()
{
int count=0;
int so_phan_tu;
std::cout << "nhap so phan tu : \n";
std::cin >> so_phan_tu;
int* A = new int[so_phan_tu];
std::cout << "nhap cac phan tu : \n";
for (int i = 0; i < so_phan_tu; i++)
{
std::cin >> A[i];
if (A[i] % 5 == 0)
{
count++;
}
}
std::cout << so_phan_tu - count;
system("pause");
return 0;
}
//cái này viết bằng C++ em nhé
Explanation: