当前位置:首页>维修大全>综合>

atcos是什么函数

atcos是什么函数

更新时间:2023-09-17 09:49:18

atcos是什么函数

atoi(s)函数用于把一个字符串转换为一个整型数据,该函数定义在stdlib.h中

#include<iostream.h>

#include<stdlib.h>

int main()

{

char s[100];

int b;

gets(s);

b=atoi(s);

cout<<b<<endl;

return 0;

}

更多栏目