Hello again,
I would like to ask how could I check if the input is right:
the program asks user to input a float from a keybord, but what if user inputs a char. Is there any funcion which can check that?
Thanks in advance.
Use float.TryParse() to see if the value is a float. If it is, the function returns "true", if not, "false". You can then use an "if" statement to determine whether or not to actually go ahead with whatever you want to do with the float.
But float.TryParse() is a part of C++, it cannot be used in C or am I wrong?
Maybe. I've honestly got no idea. If you're using .NET (like all the Microsoft Express Editions), it should be the same across all languages. Try it, and if it works, great. If not, then there is one easy way to do it - use a try/catch block.
In this way, if the user types a value that is incompatible, when you try to use the data, it will generate an error, as usual. This time, however, the application will not crash, as you have effectively told the program to expect an error.
I'm not too sure about C, but here it is in C#:
Presumably the process is similar in C, and hopefully you can work out how to write it in your language. Bear in mind, however, that the try block will activate with ANY error, not necessarily an error related to the data conversion. If you change the word "Exception" in the catch() bit to "InvalidCastException" then this should only target this specific error.Code:try { //Use your code to get the input here. //Here's one example - use your own one. float f = (float) Console.ReadLine(); //If the code execution gets here, we know it was successful. Console.WriteLine("Successful."); } catch (Exception exc) { //This code only runs if there was an error in the "try" section. //If so, we know the conversion was not successful. Console.WriteLine("You did not enter a float value, stupid."); Console.WriteLine("The error message was: " + exc.Message); }
Hope this helps,
Xav
I've just had a thought - you said that the float.TryParse() was a C++ function. I've used the function in Visual Basic and C#, and it works fine. I used the Microsoft Visual Studio Express editions, which are slightly different from normal code, as the code relies on the Microsoft .NET Framework to run. This is known as "managed code".
Any language that you are writing for the .NET framework will have access to the .NET functions, so you should be able to access it from C. Otherwise, I can't guarantee it. Unfortunately, there is no C version, but there are C++ and C# versions, available from the links provided.
In C, take user input as a string. Then attempt to convert it to a float (perhaps using strtod). If conversion was successful, you had a float -- as a bonus, you get the converted result.
Try ASCII values and when user enters an unwanted character then please check whether it matches with the respective ASCII value. For capital alphabets you can specify the range 65-90 and for small alphabets it is 97-122 using if condition. There are ASCII values for special characters also. Each character in C is internally represented by it's ASCII value.
This is actually a large step backwards from using the standard library functions. C is not tied to ASCII, although other implementations I imagine are rare. Using the numeric equivalents instead of 'a' (for example) only looks cool to newbs.
But floating point values can contain several nondigit characters in certain locations. The string "-123.45e+6" represents a valid floating-point number.
Code:#include <stdio.h> #include <stdlib.h> int main(void) { const char *text[] = { "-123.45e+6", "-123.45.e+6", "+123.45e-6", "+123.45e-6+", }; size_t i; for ( i = 0; i < sizeof text / sizeof *text; ++i ) { char *end; double value = strtod(text[i], &end); if ( *end == '\0' ) { printf("value = %g\n", value); } else { printf("failed to convert %s\n", text[i]); } } return 0; } /* value = -1.2345e+008 failed to convert -123.45.e+6 value = 0.00012345 failed to convert +123.45e-6+ */
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks