Answers for "convert char to int"

43

php string to int

intval($string);
Posted by: Guest on February-20-2020
14

java get an int from a char

char charValue = '2';
int intValue = Character.getNumericValue(charValue); // 2
Posted by: Guest on March-21-2020
13

converting char to int in java

public class JavaExample{  
   public static void main(String args[]){  
	char ch = '9';
		
	/* Since parseInt() method of Integer class accepts
   	 * String argument only, we must need to convert
	 * the char to String first using the String.valueOf()
	 * method and then we pass the String to the parseInt()
	 * method to convert the char to int
	 */
	int num = Integer.parseInt(String.valueOf(ch));
		
	System.out.println(num);
   }
}
Posted by: Guest on August-07-2020
2

char to int

int n = Character.getNumericValue(char);
Posted by: Guest on December-07-2020
0

c convert char to int

int i = (int)(c - '0');
Posted by: Guest on October-29-2020
-4

converting char to int in c++

#include <sstream>

using namespace std;

int main()
{
    stringstream str;
    
    str << "1";

    double x;
    str >> x;
}
Posted by: Guest on March-21-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language