题解列表

筛选

Hello, world! (C语言代码)

摘要:解题思路:将数字转化为字符注意事项:不能直接用char(a)改变a的属性参考代码:#include<stdio.h>int main(){    int a;    while((scanf("%d"……

字符排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:正确的:#include<stdio.h>#include<string.h>#define N 21void pai(char s[]);int main(){    ……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a,b;while(scanf("%d%d",&a,&b))printf("%d",a+b);return 0;……