鲜艳衬衫

文章
6
资源
0
加入时间
2年10月21天

C语言:八进制转十进制

#include#include//八进制转十进制int main(){    char s[6],*p = s;    int n;    gets(p);    n = *p-'0';           //把字符型数字转化成数值型数