Computer Science, asked by misriyaps20, 8 hours ago

convert decimal number 78 to binary equivalent​

Answers

Answered by Kalihacker
1

Answer:

The following is a rust program

fn main() {

let number:f64=78.0;

let num_str:String=format!("{}",number).to_string()

println!("{:?}",num_str.as_bytes())

}

Answered by pjahnabi007
0

Answer:

1001110 is the correct answer

Attachments:
Similar questions