write a program to display the following series number is 10,20,30,... ,100
QGP:
Which Programming Language do you want it in?
Answers
Answered by
5
Explanation:
Class Series
{
public static void main (String args [])
{
int i,n;
n=100;
(for i=10;i <=n;i=i+10)
System.out.print(i);
}
}
Similar questions
History,
6 months ago
Social Sciences,
6 months ago
Science,
1 year ago
Social Sciences,
1 year ago
Science,
1 year ago