|
||||||
| C and C++ C and C++ forum for discussing all forms of C except for C#. These languages are powerful low level languages used for creating Operating Systems, Device Drivers, compilers and much more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
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. |
| Sponsored Links |
|
|
|
|||||
|
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#: 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
__________________
[TRUTH] TcM is the best moderator ever! [/TRUTH] "Valid XHTML is like sex - everybody claims to have the same goal, but everybody has their own tricks and results vary wildly." To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
|
|||||
|
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.
__________________
[TRUTH] TcM is the best moderator ever! [/TRUTH] "Valid XHTML is like sex - everybody claims to have the same goal, but everybody has their own tricks and results vary wildly." To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
| Sponsored Links |
|
|
|
|||
|
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.
|
|
|||||
|
Good idea.
__________________
[TRUTH] TcM is the best moderator ever! [/TRUTH] "Valid XHTML is like sex - everybody claims to have the same goal, but everybody has their own tricks and results vary wildly." To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
|
|||
|
Quote:
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+
*/
|
|
|||||
|
Interesting.
__________________
[TRUTH] TcM is the best moderator ever! [/TRUTH] "Valid XHTML is like sex - everybody claims to have the same goal, but everybody has their own tricks and results vary wildly." To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
| Sponsored Links |
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problem removing from ArrayList (affects Vector as well) | chunkit | Java Help | 0 | 03-30-2008 10:36 PM |
| need someone to check my coding | debug | C and C++ | 3 | 03-01-2008 10:22 AM |
| I need help please! | zizimetalique | C and C++ | 5 | 11-17-2007 09:39 PM |
| Works when i have an int | NoName | C and C++ | 1 | 08-27-2007 11:25 PM |
| Xav | ........ | 1024.41 |
| MeTh0Dz|Reb0rn | ........ | 974.08 |
| morefood2001 | ........ | 850.04 |
| John | ........ | 841.93 |
| WingedPanther | ........ | 661.52 |
| marwex89 | ........ | 575.59 |
| Brandon W | ........ | 447.33 |
| chili5 | ........ | 292.12 |
| orjan | ........ | 187.41 |
| Steve.L | ........ | 181.88 |
Goal: 100,000 Posts
Complete: 79%