题解列表

筛选

姓名排序 (C++代码)

摘要:解题思路:简单理解通俗易懂注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int m,n; in……

循环入门练习6 (C语言代码)

摘要:解题思路:注意事项:第二个循环跳出后,j要置1.参考代码:#include <stdio.h>int main(){    int N=0,j=1,i=1;    scanf("%d",&N);   ……

可AC (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num[40] = { 1, 1 }; int N, i, j, k; scanf("%d", &N);……