Computer Science, asked by duddee88, 12 hours ago

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 anuskanandy19
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