题解列表

筛选

[编程入门]选择排序 c语言

摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() {  int i,t,j,n;  int array[10];  for(n=0;n<10;n++){   ……

c++语言1011题

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;int main(){    int t = 1 ;//取余计算的余数,赋值为1是为了方便进……

编写题解 1162: 密码(C++)

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

哎哟我去海盗狗

摘要:#include <stdio.h> int main() { int a[100], b[100] = { 0 }, n, k = 0; scanf_s("%d", &n); for……

剪刀石头布

摘要:解题思路:利用if进行枚举,其余情况输出0注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){     int a,b;  ……

跟着思路写就好了

摘要:#include <stdio.h> int main() {     float score;     int dydy85=0,dydy60=0,xy60=0;     scanf("%……

2551.:作文 python 、90%错误的可以看一看!

摘要:### 思路 思路很简单就是用count去记录行数,cur_line_num 去记录当前行是写到第几个了。 对于一个新单词来说,如果( 这个单词长度 + cur_line_num )不超过每行最大……