题解列表

筛选

我美吗!

摘要:解题思路:注意事项:参考代码:#include "stdio.h" int ctof(int c); int main() {  int c;  for(c=-100;c<=150;c+=5……

我美吗!

摘要:解题思路:注意事项:参考代码:#include "stdio.h" double fact(int n); double mypow(double x,int n); int main() {……

C语言程序设计教程(第三版)课后习题3.7 (C语言代码)

摘要:解题思路:利用数组进行字符的转换。定义两个字符数组,利用循环给第一个数组输入要转换的字符串,然后对字符数组进行遍历,把数组a里面的所有字符加4赋给数组b,最后再利用循环遍历b数组,将b数组里面的字符转……