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
English,
5 months ago
Social Sciences,
5 months ago
World Languages,
5 months ago
History,
11 months ago
Business Studies,
1 year ago