题解列表
c语言解决 小九九 题号1671
摘要:解题思路:For循环嵌套do while循环,再嵌套if-else判断。注意事项:在做这个题目中最主要其实就是需要每个左对齐,我之前尝试了别的方法,比如增加/t缩进等,但最后还是发现,直接判断敲空格是……
分数线的划定很容易,就像她跟我划清界限一样
摘要:#include <stdio.h>#include <math.h>typedef struct{ &nbs……
每个数的个数(cx12h)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;map<int,int>mp;int main(){ int……
s01串(cx12g)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,c; s="0&qu……
代码要求基础,新手就能懂
摘要:解题思路:自己看注意事项:没有参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char str[3][10……
借用改写了用sort()
摘要:解题思路:注意事项:参考代码:while 1: try: n = int(input()) if n ……
与指定数字相同的数的个数
摘要:int main(){ int N = 0; int m = 0; scanf("%d %d", &N, &m); //读取整数 int count = 0; // 计……