1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 252 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)另类版 摘要:解题思路:i作为输入,j用来求算出位数k求算出他的倒序数组a是用来取各个位数最后按指定格式输出。注意事项:注意换行的位置!!!参考代码:#include<stdio.h>int main() { in…… 题解列表 2022年05月10日 0 点赞 8 评论 317 浏览 评分:9.9
数列问题C++超简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; int a[36]; a[1]=3;a[2]=…… 题解列表 2022年05月10日 0 点赞 0 评论 513 浏览 评分:0.0
确定不来看看? 摘要:解题思路:把当前月之前天数加起来 再加上当前日期注意事项:日期需要正确输入参考代码:#include <stdio.h>int main(){ int x,y,s=0; scanf("%d%d",&x…… 题解列表 2022年05月10日 0 点赞 1 评论 244 浏览 评分:6.0
数列有序C++超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,a[101]; while(cin>>n>>…… 题解列表 2022年05月10日 0 点赞 0 评论 350 浏览 评分:0.0
平方和与立方和C++超简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,x,y; while(scanf("%d%d…… 题解列表 2022年05月10日 0 点赞 0 评论 1014 浏览 评分:7.3
上过小学就会的代码 摘要:解题思路:小学生都会的找规律注意事项:参考代码:n=int(input())a=2b=1d=0for i in range(n): c=a/b d+=c e=a+b …… 题解列表 2022年05月10日 0 点赞 0 评论 377 浏览 评分:9.3
小写转大写超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char s[81];//保存输入的字符串 …… 题解列表 2022年05月10日 0 点赞 0 评论 358 浏览 评分:0.0
很熟悉应该没问题可以可以 摘要:解题思路:海伦公式求解三角形面积,很熟悉的题目,一样样是要用宏定义,VBA语言的题目吧小数输出的格式不会写注意事项:用python球十除以二不是除以三我给记错了,要保留三位小数不懂得格式怎么写参考代码…… 题解列表 2022年05月10日 0 点赞 0 评论 518 浏览 评分:0.0
找到经过顺序调整的关键词(C++代码) 摘要:注意事项:要考虑到可无限次输入参考代码:#include<iostream>#include<string>#include<vector>#include<sstream>#include<algo…… 题解列表 2022年05月10日 0 点赞 0 评论 389 浏览 评分:0.0