Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ฉันจะแปลงถ่านเป็น int ใน C และ C ++ ได้อย่างไร


ในภาษา C มีสามวิธีในการแปลงตัวแปรประเภทถ่านเป็น int ได้ดังนี้ −

  • sscanf()
  • atoi()
  • การพิมพ์ดีด

นี่คือตัวอย่างการแปลงถ่านเป็น int ในภาษา C

ตัวอย่าง

#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++ มีสองวิธีในการแปลงตัวแปรประเภทถ่านเป็น int -

  • stoi()
  • การพิมพ์ดีด

นี่คือตัวอย่างการแปลงถ่านเป็น int ในภาษา C++

ตัวอย่าง

#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