fn main() { for num in 1..10 { if num % 2 == 0 { continue; // اعداد زوج پردازش نمیشوند } println!("عدد فرد: {}", num); } }