Problem I made a program that converts a decimal number given from the user, and converts it to a binary […]
Tag: converting
Converting a boolean list to string, and vice versa
Problem I am currently using this to convert a List of booleans to a string var tempbllist = new List<int>(); […]
Converting between std::wstring and std::string
Problem While researching ways to convert back and forth between std::wstring and std::string, I found this conversation on the MSDN […]
Format the output of Color.ToString() to RGB values [closed]
Problem Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add […]
Hex to Double converter
Problem I stumbled on this SO question which was asking about a way to convert larger hex values to a […]
Digit to words converter
Problem This is one of the longest programs I have made with methods and I think I must be doing […]
Using generic types for a custom mapper
Problem I have a method which takes a certain generic object, which basically orders these objects based on a list […]
Temperature conversion table
Problem This is another solution for this challenge. Problem statement: In this challenge, write a program that takes in three […]
Converting audio to different file formats
Problem I have this code that converts audio to different file formats: import java.io.File; import it.sauronsoftware.jave.AudioAttributes; import it.sauronsoftware.jave.Encoder; import it.sauronsoftware.jave.EncoderException; […]
fasm convert hex byte to binary string
Problem This fasm x64 (Linux) code seems very crude and repetitive, but it gets the job done. How could I […]