题解列表
1033: [编程入门]自定义函数之字符提取
摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a: if i=="a" or i=="e" or i=="i" or i=="o" or i=="u": ……
编写题解 1013: [编程入门]Sn的公式求和(C语言)
摘要:参考代码:#include<stdio.h>
int GetSn(int n){
int An[n]; // 变量数组不能直接初始化
int sum = 2; ……
python解答,内容简洁易读
摘要:参考代码:def match_strings(s1, s2): i, j = 0, 0 while i < len(s1) and j < len(s2): if s1[i]……
编写题解 1047: [编程入门]报数问题(C语言)
摘要:参考代码:(C语言)#include<stdio.h>
int main()
{
int n; // 人数
scanf("%d", &n);
in……
java--study||O.o
摘要:参考代码:
import java.util.Scanner;
public class Main
{ public static void main(String[] args)
{……
java没有无符号数,写C
摘要:参考代码:#include<iostream>
using namespace std;
int main()
{
unsigned x;
int n;
cin >> x >>……
java没有无符号数,写C
摘要:参考代码:#include<iostream>
using namespace std;
int main()
{
unsigned move(unsigned, int);
……