Thursday 9 May 2019

while table program

#include <iostream>
using namespace std;
int main()
{
int i=1;
int t=7;
while(i<10)
{


cout<<t<<"*"<<i<<"="<<t*i<<endl;
i++;
}
return 0;

}
while 

No comments:

Post a Comment

Directory implementation

The selection of directory-allocation and directory-management algorithms significantly affects the efficiency, performance, and reliabil...