Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,848 questions

51,769 answers

573 users

How to calculate the date six months from the current date in Rust

1 Answer

0 votes
use chrono::{Datelike, Local, NaiveDate};

fn add_months_to_date(months: i32, date: NaiveDate) -> NaiveDate {
    let mut new_month = date.month() as i32 + months;
    let mut new_year = date.year();

    while new_month > 12 {
        new_month -= 12;
        new_year += 1;
    }

    NaiveDate::from_ymd_opt(new_year, new_month as u32, date.day()).unwrap_or_else(|| NaiveDate::from_ymd_opt(new_year, new_month as u32, 28).unwrap())
}

fn main() {
    let today = Local::now().date_naive();
    let future_date = add_months_to_date(6, today);

    println!("Date six months from now: {}", future_date);
}

   
    
/*
run:
    
Date six months from now: 2025-12-12
    
*/

 



answered Jun 12, 2025 by avibootz
...