题解列表
字符类型统计(Java代码)
摘要: import java.util.Scanner;
public class L1035 {
public static void main(String[] args)……
汉诺塔(python)
摘要:解题思路:注意事项:参考代码:def hanoi(n, a, b, c): if n > 0: hanoi(n - 1, a, c, b) print('mo……
数字分离(Java代码)
摘要: import java.util.Scanner;
public class L1034 {
public static void main(String[……
字符提取(Java代码)
摘要: public class L1033 {
public static void main(String[] args) {
//写一函数,将一个字符串中的元音字母复制到另一个字符……
题解 1120: C语言训练-"水仙花数"问题2
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c; for(int i=100;i<100……
getchar解决问题
摘要:解题思路:先输入再用字符比较注意事项:i与j的比较参考代码:#include <stdio.h>int main(){ int word = 0, number = 0, tab = 0, other……