题解列表

筛选

1781: 登陆验证问题(一)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     string str1,str2;     c……

1779: 你的第一个C语言程序

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     cout<<"Just do IT"<<endl……

1778: 罗列完美数

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int num;     int sum=0;……

C语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){    if(n==1||n==2)    {        return 1;    }    else  ……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[])//向后移动一位 {     for (int ……

1777: 循环练习之完美数判断

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int  n;     int j=0;  ……

1023: [编程入门]选择排序

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #define M 10 int main() {   ……