题解列表

筛选

分别利用循环语句解题

摘要:解题思路:分别利用三种循环语句解决问题,并熟悉三种循环语句的执行规则。三种循环语句如下:1.while(表达式)语句2.do        语句   while(表达式);3.for(表达式1;表达式……

弟弟的作业(C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[20]; int sum=0; whi……

判断第几天C++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool IsLeapYear(int year)//用来判断是否是闰年{     if (y……

题解 2857: 加密的病历单

摘要:解题思路:注意事项:三次遍历得出结果;注意循环格式,以及是哪个字符串;切勿弄混!参考代码:#include using namespace std; char b[60]= {&#39;w&#39;……

2851: 合法C标识符

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int flag[30]; int main() {     str……

1720: 数据结构-基数排序

摘要:解题思路:注意事项:参考代码://sort排序#include <bits/stdc++.h>using namespace std;int a[100005];int main(){    int ……

2917: 奇数单增序列

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){    int n;    c……