1126-字符串正反连接 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2023年10月22日 0 点赞 0 评论 333 浏览 评分:9.9
整齐美观,易懂有注释(两种方法)!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i; int a=0,b=0,c=0,d=0; scanf("%d",&m);…… 题解列表 2023年10月22日 0 点赞 0 评论 564 浏览 评分:9.9
分别利用循环语句解题 摘要:解题思路:分别利用三种循环语句解决问题,并熟悉三种循环语句的执行规则。三种循环语句如下:1.while(表达式)语句2.do 语句 while(表达式);3.for(表达式1;表达式…… 题解列表 2023年10月21日 0 点赞 0 评论 474 浏览 评分:9.9
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define len sizeof(num)typedef struct s{ int …… 题解列表 2023年10月21日 0 点赞 0 评论 304 浏览 评分:0.0
弟弟的作业(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[20]; int sum=0; whi…… 题解列表 2023年10月21日 0 点赞 0 评论 271 浏览 评分:0.0
判断第几天C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool IsLeapYear(int year)//用来判断是否是闰年{ if (y…… 题解列表 2023年10月21日 0 点赞 0 评论 305 浏览 评分:0.0
汽水瓶(题目要看全,还剩两个空瓶,可向老板借一瓶) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; while(~scanf("%d",&n)) { if(n=…… 题解列表 2023年10月21日 0 点赞 0 评论 232 浏览 评分:0.0
题解 2857: 加密的病历单 摘要:解题思路:注意事项:三次遍历得出结果;注意循环格式,以及是哪个字符串;切勿弄混!参考代码:#include using namespace std; char b[60]= {'w'…… 题解列表 2023年10月21日 0 点赞 0 评论 276 浏览 评分:9.9
2332: 信息学奥赛一本通T1181-整数奇偶排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10005];int main(){ for(int i=1; …… 题解列表 2023年10月21日 0 点赞 0 评论 315 浏览 评分:0.0
2851: 合法C标识符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int flag[30]; int main() { str…… 题解列表 2023年10月21日 0 点赞 0 评论 336 浏览 评分:9.9