题解列表

筛选

c++找最大数序列

摘要:解题思路:    选取字符串中数字将其排除二维数组,并将二维数组中各个最大值放入一个一维数组中。再在一维数组中取出最大值。注意事项:    使用isdigit(c)判断是否数字。    #includ……

太简单了啊

摘要:#include<stdio.h> int main(void) {     int h = 100;     int n;     float sum = 0;     scanf("%……

1231杨辉三角,C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){    int n;    int a[100][100]={1};    while(scanf("%d",……

这尼玛太简单了啊

摘要:#include<stdio.h> int judge(int n); int cube(int n); int main(void) {     int i;     for(i = 2……