1. Write a program to input a number and print all the multiples of seven in ascending order.
2. Write a program to input a number and print the sum of all even numbers up to that number.
please help...
Attachments:
Answers
Answered by
1
Answer:
For I= 7 to 70... Step 7
Print I
Next I
End
Input N
For I=2 to N Step2
Print I
Next I
End
Similar questions