一个while循环,用了点小技巧,代码的关键就在y=y-m 摘要:#include<stdio.h> int main() { int n = 0; double m = 0, y = 0; scanf("%lf %d", &m, &n); wh…… 题解列表 2023年02月02日 0 点赞 0 评论 234 浏览 评分:0.0
偶数求和(水题) 摘要:```c #include int main(){ int n,m,r,aa,a[100],i,j,k=0,sum=0; while(scanf("%d%d",&n,&m)!=EOF…… 题解列表 2023年02月02日 0 点赞 0 评论 281 浏览 评分:0.0
练习题_保留字母 摘要:解题思路:创建一个空的string和一个char类型数据,使用cin.get()读入数据存放于char中,只要是字母就+=赋值。注意事项:参考代码:#include<iostream>#include…… 题解列表 2023年02月02日 0 点赞 0 评论 280 浏览 评分:0.0
1093 字符逆序 字符串 摘要:#include<stdio.h>#include<string.h> int main(){ char str[100]; gets(str); int a,i,temp; a=strlen(str…… 题解列表 2023年02月02日 0 点赞 0 评论 260 浏览 评分:0.0
和前面的全排列一样 答案对 提交为啥一直是编译错误 求大哥 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int b[100000];int a[100000];int n;int inde…… 题解列表 2023年02月02日 0 点赞 0 评论 525 浏览 评分:0.0
偶数列举、、、 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,n; scanf("%d",&n); for(i=1;i<n;++i){ if(i%2==0){…… 题解列表 2023年02月03日 0 点赞 0 评论 300 浏览 评分:0.0
求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int b,n,i,sum=0; scanf("%d/n",&n) ;for(i=1;i<=n;i++){ s…… 题解列表 2023年02月03日 0 点赞 0 评论 314 浏览 评分:0.0
1229: 最小公倍数 摘要:解题思路:用递归的方法,就可以用简洁的代码解决了。注意事项:参考代码:n1,n2=map(int,input().split())def get(n1,n2): if n1%n2==0: …… 题解列表 2023年02月03日 0 点赞 0 评论 327 浏览 评分:0.0
1227: 日期排序 摘要:解题思路:输入很简单,不用多说,我们把年月日做成一个小列表,塞进大列表里,然后再排序输出就可以了,很简单的一道题。注意事项:参考代码:n=[]while True: try: s=…… 题解列表 2023年02月03日 0 点赞 0 评论 666 浏览 评分:0.0
1235: 检查金币 摘要:解题思路:题目可以直接用10个for循环搞定,虽然代码不是很简洁,但思路简单。注意事项:参考代码:while True: try: n=int(input()) fo…… 题解列表 2023年02月03日 0 点赞 0 评论 327 浏览 评分:0.0