如何在 C 和 C++ 中将字符转换为 int?
在 C 语言中,有三种方法可以将 char 类型的变量转换为 int。这些方法如下 −
下面是一个在 C 语言中将 char 转换为 int 的示例,
示例
#include<stdio.h> #include<stdlib.h> int main() { const char *str = "12345"; char c = 's'; int x, y, z; sscanf(str, "%d", &x); // Using sscanf printf("\nThe value of x : %d", x); y = atoi(str); // Using atoi() printf("\nThe value of y : %d", y); z = (int)(c); // Using typecasting printf("\nThe value of z : %d", z); return 0; }
输出
输出如下
The value of x : 12345 The value of y : 12345 The value of z : 115
在 C++ 语言中,有以下两种方法可以将 char 类型的变量转换为 int −
- stoi()
- 类型转换
下面是一个在 C++ 语言中将 char 转换为 int 的示例,
示例
#include <iostream> #include <string> using namespace std; int main() { char s1[] = "45"; char c = 's'; int x = stoi(s1); cout << "The value of x : " << x; int y = (int)(c); cout << "\nThe value of y : " << y; return 0; }
输出
输出如下
The value of x : 45 The value of y : 115
广告