1) Write a program to take as input three integers for (a) incrementing, (b) skipping and (c)
ending. Your program should start counting from zero, incrementing by a, skip b and end
at c.
Example 1:
input: 2, 6, 12
output: 0, 2, 4, 8, 10, 12
2) Write a program that takes as input a class score. Output the grade for the class based on
the following guideline:
90 and above is A
80 and above is B
70 and above is C
60 and above is D
Anything less than 60 is F
Anything more than 100 or less than
0 is invalid input
can you help me to write this code
Elhussein 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.