Computer Science, asked by arshaecharles, 6 months ago

write a program to print odd numbers from 34 to 78.

Answers

Answered by sanjay40518
0

Answer:

class Sample

{

public void show()

{

for(int i=34;i<=78;i++)

if(i%2==1)

System.out.println(i);

}

}

Similar questions