Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Leson01
- {
- class Program
- {
- static void Main(string[] args)
- {
- int multipliesNumber = 7;
- int multiplicationResult;
- int endOfCycle = 14;
- for (int startOfCycle = 1; startOfCycle <= endOfCycle;startOfCycle++)
- {
- multiplicationResult = multipliesNumber * startOfCycle;
- Console.WriteLine(multiplicationResult);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement