[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string n;int main(){ cin>>n; cout<<n.size…… 题解列表 2022年05月24日 0 点赞 0 评论 221 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n>=…… 题解列表 2022年05月24日 0 点赞 0 评论 358 浏览 评分:6.0
[编程入门]三个数找最大值 摘要:解题思路:max注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; co…… 题解列表 2022年05月24日 0 点赞 0 评论 326 浏览 评分:0.0
[编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n<1…… 题解列表 2022年05月24日 0 点赞 0 评论 278 浏览 评分:0.0
优质题解 回文数(二)普通C++写法,分模块讲解 摘要:解题思路:根据题意我们知道实现程序的话,主要是下面函数的循环:定义cot = 0,cot是用来记录循环次数 由于(0<=M<=maxlongint)较大,我们使用数组进行储存数据,防止数据过大溢出 …… 题解列表 2022年05月24日 0 点赞 0 评论 1155 浏览 评分:7.7
结构体之时间设计 摘要:解题思路:可参考注释注意事项:参考代码:#include<stdio.h> struct Date{ int year; int month; int day; };…… 题解列表 2022年05月24日 0 点赞 0 评论 287 浏览 评分:0.0
结构体是什么也没有很理解 摘要:解题思路:第三题才完成我已经快用了一个小时,实在很不熟练而且我看了题解注意事项:参考代码:def inp(): n=int(input()) while (n>0): jl=…… 题解列表 2022年05月24日 0 点赞 0 评论 313 浏览 评分:0.0
算法提高VIP-输出九九乘法表 摘要:解题思路:注意事项:参考代码:#include <stdio.h>//为了方便大家,我就把源码放出来了int main (int argc, const char *argv[]){ int i,…… 题解列表 2022年05月24日 0 点赞 1 评论 319 浏览 评分:9.9
C语言训练-求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum=0,N,a[10][10]; scanf("%d",&N); for(x=0…… 题解列表 2022年05月24日 0 点赞 0 评论 243 浏览 评分:0.0
小九九乘法表 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int i,j,sum;for(i=1;i<=9;i++){for(j=1;j<=i;j++){printf("%…… 题解列表 2022年05月24日 0 点赞 0 评论 324 浏览 评分:0.0