题解列表
没有什么用的找最大数
摘要:import java.text.DecimalFormat;import java.util.ArrayList;import java.util.Collections;import java.u……
阶乘求和[考虑变量类型数值溢出]
摘要:解题思路: 注意变量类型范围,可能会溢出;选long long数据类型;注意事项:阶乘求和类型名称 字节数 取值范围
signed char  
编写题解 1040: [编程入门]实数的打印
摘要:解题思路:注意事项:换行的操作不可忘参考代码:#include<stdio.h>int main(){ float n; int i,j; scanf("%f",&n); for(i=1;i<=3;i……
1042: [编程入门]电报加密 c语言
摘要:解题思路:注意事项:分开写出z的情况参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]={0}; int i……
1043: [编程入门]三个数字的排序(冒泡排序法)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3]={0};//对数组进行清空 int i,j; int t; scanf……
1044: [编程入门]三个字符串的排序c语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char c[100],d[100],e[100]; char ……