1.字母转对应数字:
#include<bits/stdc++.h>
using namespace std;
int main()
{
char c='m';
printf("%d",m);
}
数字转字母
#include<bits/stdc++.h>
using namespace std;
int main()
{
int g=97;
printf("%c",g);
}
2.找最大公因数
int zhui(int n,int m)
{
return m? zhui(m,n%m):m;
}
最后
以上就是微笑学姐最近收集整理的关于学习知识点的全部内容,更多相关学习知识点内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复