A high-data-rate IP network designed for modern tactical communications providing outstanding data performance across the battlefield
Answer:
You forgot the "=" sign.
Explanation:
formulas in excel start with an "="
=SUM(A1:A5)/SUM(B1:B5)
What do ur friend wants to apply for ?
Students can perform several tasks in a digital environment. For example, they can watch instructional videos, take notes, and participate in peer discussions.
this is the right answer .just did it
Answer:
#include <iostream>
using namespace std;
int main()
{
int myArray[] = {-11,3,-8,30,-2,0,5,7,-100,44};
int n = sizeof(myArray)/sizeof(myArray[0]);
for(int i=0;i<n;i++){
if(myArray[i]>=0){
cout<<myArray[i]<<endl;
}
}
return 0;
}
Explanation:
First include the library iostream in c++ programming for using the input/output function.
Then, create the main function and define the array with the elements which contain both positive element as well negative elements.
after, use the for loop for traversing the array and inside the loop take the conditional statement for check if element in the array is positive.. if it true then print the element on the screen with separate line.