pub fn encrypt(content: String, offset: i32) -> String { let mut result = String::new(); for c in content.chars() { if c.is_lowercase() { let i = c as i32 + ...
確定! 回上一頁