logo
Posobie_Cpp

Void main()

{

int n;

cout<<”Enter number in the range 1-10”;

do

{

cin>>n;

}

while(n!=7);

cout<<” 7 is my favorite number.\n”;

}