题解列表

筛选

编写题解 1402: 简单的字符串

摘要:解题思路:字符数组用来作比较,数组用来计数。记得加判断注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(……

同因查找-while循环(C语言代码)

摘要:解题思路:while循环,从10开始到1000,依次输出符合值。注意事项:范围大小(10-1000)参考代码:#include<stdio.h>int main(){ int n=10; scanf(……