题解列表

筛选

我来写个C语言版本的吧

摘要:参考代码:#include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> int main() {……

数字逆序输出

摘要:解题思路:注意事项:参考代码:#include int main(){ int a[10],i; for(i=0;i<10;i++){ scanf("%d",&a[i]); } for(i……

Hello, world!最简单C语言代码

摘要:解题思路:注意事项:这里我直接申请了一个全局变量的数组,如此做可以扩大数组可存储数量的上限;同时由于字符存储在计算机中就是以ASCII码形式,因此可以直接以%c格式输出存储在该数组的输入数据。//参考……