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 ConsoleApp2
- {
- class Program
- {
- static void Main()
- {
- int i = 11;
- int a, b;
- while (i < 100)
- {
- a = i % 10;
- b = (i / 10) % 10;
- if (a % 2 != 0 && b % 2 != 0)
- {
- Console.Write("{0} ", i);
- }
- i += 2;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement