A number of answers script ms marked from 0-99 a) number of answer script marked ;b) Percentage of candidates getting 85or above; Percentage of candidates getting 35or less.,Write a program in java to take the scores as input and then output thre quanties required
Answers
Answered by
0
Explanation:
Write a program to display the first ten terms of the series:
1, -3, 5, -7, 9,…………………………………..
class Q1a
{
public static void main(String s[])
{
int i,j=-3;
for(i=1;i<=20;i+=4)
{
System.out.print(i+”,”);
System.out.print(j+”,”);
j-=4;
}
}
}
Output: 1,-3,5,-7,9,-11,13,-15,17,-19
Answered by
0
Answer:
answer here atention plss
Attachments:
Similar questions