how to write a program to print the numbers between 1 and 100,along with an indication of whether each is even or odd?
#include<iostream>
using namespace std;
&
&
int main (){
for (int i=1;i<101;i++){
if(i%2==0)
cout<<i<<"& number is even"<<endl;
else
cout<<i<<"& number is odd"<<endl;
} &
system("PAUSE"); &
&
}