字符串正反连接(简单C++) 摘要:#include<iostream> using namespace std; #include<string.h> int main() { char s1[50],s2[50];…… 题解列表 2022年10月26日 0 点赞 0 评论 490 浏览 评分:9.3
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 282 浏览 评分:0.0
编写题解 2903: 不高兴的津津 摘要:解题思路:注意事项:max>8参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Time{ int stime; …… 题解列表 2022年10月26日 0 点赞 0 评论 278 浏览 评分:0.0
-委派任务(数学题,我直接输出了) 摘要:#include<iostream> using namespace std; int main() { cout<<"A,B,C,F,"; return 0; }解题思路…… 题解列表 2022年10月26日 0 点赞 0 评论 352 浏览 评分:6.0
C语言训练-大、小写问题(C++简单) 摘要:#include<iostream> using namespace std; int main() { char a[20]; cin.getline(a,20); …… 题解列表 2022年10月26日 0 点赞 0 评论 347 浏览 评分:9.9
定义宏,判断是否为闰年 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define LEAP_YEAR(y) y%100 ==0 && y%4 ==0 && y…… 题解列表 2022年10月26日 0 点赞 0 评论 229 浏览 评分:0.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ int score; …… 题解列表 2022年10月26日 0 点赞 0 评论 317 浏览 评分:0.0
整数大小比较 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y; scanf("%d %d",&x,&y); if(x>y){ printf(">"); …… 题解列表 2022年10月26日 0 点赞 2 评论 855 浏览 评分:6.0
查找特定的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[10000]={0}; int i=0; int m; scanf("%d",&n);…… 题解列表 2022年10月26日 0 点赞 0 评论 286 浏览 评分:0.0
关于二维数组的初始化以及对角线性质 摘要:解题思路:先构建一个三行三列的数组arr[3][3],注意第一个3是行,第二个3是列;然后根据输入对数组进行初始化并计算对角线上各数和注意事项:在主对角线上的数据的性质:行的下标与列的下标相等 …… 题解列表 2022年10月26日 0 点赞 0 评论 538 浏览 评分:9.9