write a program to print the first three natural numbers
Answers
Answered by
3
Answer:
public class Natural
{
public void main()
{
int i;
for(i=1;i<=3;i++)
{
System.out.println(i);
}
}
}
Similar questions
Chemistry,
6 months ago
English,
6 months ago
Chinese,
6 months ago
History,
1 year ago
Business Studies,
1 year ago