Răspuns:
a) ****
b) 0 1
Explicație:
Programul in c++
#include <iostream>
using namespace std;
int main()
{
unsigned int x,y,c;
cout<<"x=";
cin>>x;
cout<<"y=";
cin>>y;
if(x>y)
{
c=x;
x=y;
y=c;
}
if(x%2==0)
x=x+1;
while(x<=y)
{
x=x+2;
cout<<"*"<<" ";
}
return 0;
}