嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n…… 题解列表 2023年11月20日 0 点赞 0 评论 381 浏览 评分:6.0
Hello, World!给个好评 摘要:解题思路:注意事项:参考代码:#include<iosteam> using namespace std; int main() …… 题解列表 2023年11月20日 0 点赞 1 评论 399 浏览 评分:6.3
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n…… 题解列表 2023年11月20日 0 点赞 0 评论 386 浏览 评分:6.0
A+B Problem给个好评 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年11月20日 0 点赞 1 评论 381 浏览 评分:8.4
2812: 球弹跳高度的计算 摘要:解题思路:注意事项:令人忍俊不禁参考代码:height=float(input())sum=-heightsum=float(sum)for i in range(1,11): sum=sum+…… 题解列表 2023年11月20日 0 点赞 0 评论 671 浏览 评分:4.7
进制转换(超简单) 摘要:解题思路:注意事项:注意区别八进制为“%o”,十六进制为“%x”无符号十进制为“%u”有符号十进制为“%d”参考代码:#include <stdio.h>int main(){int a;scanf(…… 题解列表 2023年11月20日 0 点赞 0 评论 540 浏览 评分:0.0
自定义函数之字符串反转 摘要:解题思路:for循环,倒叙输出注意事项:参考代码:#include <stdio.h>#include <string.h> int main(){char a[100];int i,j;gets(a…… 题解列表 2023年11月20日 0 点赞 0 评论 294 浏览 评分:0.0
阿姆斯特朗数 摘要:解题思路:注意事项:hhh其实只用隔一个空格,被骗啦嘻嘻参考代码:#include<stdio.h>int main(){ int i,a,b,c,s; for(i=2;i<1000;i+…… 题解列表 2023年11月19日 0 点赞 0 评论 493 浏览 评分:9.9
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:用字符串函数<string.h>注意事项:需注意两个函数的位置,若主函数在前则须在主函数内声明连接的函数参考代码:#include <stdio.h>#include <string.h>v…… 题解列表 2023年11月19日 0 点赞 0 评论 387 浏览 评分:0.0
矩阵对角线求(Java) 摘要:解题思路: matrix.length是行。matrix[0].length是列。注意事项:参考代码:import java.util.Scanner; public class Main { …… 题解列表 2023年11月19日 0 点赞 0 评论 479 浏览 评分:0.0