题解列表
[编程入门]二维数组的转置 python初学
摘要:解题思路: 对于一个数组, 输出时 只需将 行变为列,列变为行即可注意事项: python 二维数组的输入参考代码:a&nb
题解 1049: [编程入门]结构体之时间设计
摘要:注意闰年的判断方法和switch的应用
#include
#include
#include
int main()
{
……
一行!一行!一行!一行!一行!一行!
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;main(){ for(int a,b;cin>>a>>b;cout<<(a+b)<<end……
题解 1032: [编程入门]自定义函数之字符串连接
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>void Cat(char a1[],char b1[]){ gets(a1); g……
题解 1031: [编程入门]自定义函数之字符串反转
摘要: #include
#include
#include
void turn(char str[])
{
int a,i;
……
Hello World! 开始C语言
摘要:解题思路:注意事项:前两个printf()函数需要使用换行符参考代码:#include<stdio.h>
int main()
{
printf("******************……
2033: 网络互通(C语言)并查集
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
// 初始化并查集
int *InitUFS(int size) {
i……
题解 1035: [编程入门]自定义函数之字符类型统计
摘要: #include
#include
void turn(char str[])
{
int alp=0,num=0,spa=0,……