2758: 打印ASCII码 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年09月24日 0 点赞 0 评论 382 浏览 评分:6.0
配对碱基链(三目运算法吧) 摘要:参考代码: ```c #include #include int main() { char a[255]; gets(a); int len=strlen(a); char…… 题解列表 2023年09月24日 0 点赞 0 评论 331 浏览 评分:9.9
2754: 其他基本数据类型存储空间大小 摘要:解题思路:放代码!bool是1,char也是1;参考代码:import java.util.Scanner;public class Main { public static void main(St…… 题解列表 2023年09月24日 0 点赞 0 评论 402 浏览 评分:9.9
最大公约数与最小公倍数 摘要:解题思路:用辗转相除法求最大公约数,在求出最小公倍数。最后再调用函数即可。注意事项:参考代码:#include<stdio.h>int f(int a,int b){ if(b==0) r…… 题解列表 2023年09月24日 0 点赞 0 评论 178 浏览 评分:0.0
1781: 登陆验证问题(一) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1,str2; c…… 题解列表 2023年09月24日 0 点赞 0 评论 194 浏览 评分:0.0
1779: 你的第一个C语言程序 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { cout<<"Just do IT"<<endl…… 题解列表 2023年09月24日 0 点赞 0 评论 632 浏览 评分:2.0
1778: 罗列完美数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int num; int sum=0;…… 题解列表 2023年09月24日 0 点赞 0 评论 203 浏览 评分:9.9
C语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==1||n==2) { return 1; } else …… 题解列表 2023年09月24日 0 点赞 0 评论 347 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; //创建学生结构体 struct Student…… 题解列表 2023年09月24日 0 点赞 0 评论 140 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; //定义日期结构体 struct Date { int year; …… 题解列表 2023年09月24日 0 点赞 0 评论 191 浏览 评分:9.9