题解列表
1025: [编程入门]数组插入处理 C++版
摘要:解题思路:冒泡排序注意事项:参考代码:#include<iostream>using namespace std;long long a[15],z;int main(){ for(int i=1;i……
1048: [编程入门]自定义函数之字符串拷贝
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<string.h>
int main()
{
char st[100],st2[100];
int n,m……
1049: [编程入门]结构体之时间设计
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
struct tim {
int y;
int m;
int d;
};
int ispr(int……
strlen的灵活运用
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n,m; char a[20],b[20]; ……
1050: [编程入门]结构体之成绩记录
摘要:解题思路:注意事项:#include<stdio.h>
struct inf {
char num[15];
char name[15];
int a;
in……
通俗易懂的数据处理方法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,k,b[100]; scanf("%d",&a); for(i=0;i<=4;i++) { k……
!!!记住多行输入的方法!!!
摘要:解题思路:注意事项:参考代码:import syswhile True: line=sys.stdin.readline() if not line: break fo……