题解列表
2244: 蓝桥杯算法训练-C++ CH08 01(c++代码实现)
摘要:解题思路:注意事项:应该考虑负数情况参考代码:#include<iostream>using namespace std;class zrf_Ratio{public: friend std::ost……
结构体之时间设计-C语言
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int yil,int ay,int kun){ int i,t=0; for(i=1;i<ay;i++) { if……
求[X,Y]内被除3余1并且被除5余3的整数的和
摘要:解题思路:有点基础的都能看懂,这可能是我在ACM训练中看到的最简单的题目了了!17:10:51注意事项:参考代码:#include<stdio.h>int main(){ int x,y; int s……
编写题解 1687: 数据结构-字符串连接
摘要:解题思路:注意事项:参考代码:a,b = map(str,input().split())c,d = map(str,input().split())e,f = map(str,input().spl……
[编程入门]自定义函数之字符串拷贝-C语言
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,j=0; char a[100],b[100]; scanf("%d",&n); getch……