write a c program given two integers, l and r, print all the odd numbers between l and r (l and r inclusive )
Answers
Answered by
0
public class Name {
private String first;
private String last;
public Name(String theFirst, String theLast) {
first = theFirst;
last = theLast;
}
public void setFirst(String theFirst) {
first = theFirst;
}
public void setLast(String theLast) {
last = theLast;
}
}
Similar questions