2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d %d", &x, &y); if(x>y) pri…… 题解列表 2023年11月12日 0 点赞 0 评论 119 浏览 评分:0.0
整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long x,y; char a; scanf("%lld%lld",&x,&…… 题解列表 2022年12月30日 0 点赞 0 评论 213 浏览 评分:0.0
整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); if(a>b) printf(">"); else …… 题解列表 2023年03月07日 0 点赞 0 评论 134 浏览 评分:0.0
2782普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if (n<m) printf("<"); if …… 题解列表 2024年11月23日 0 点赞 0 评论 196 浏览 评分:0.0
题解 2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b; int ret; do{ ret = scanf("%d %…… 题解列表 2023年08月17日 0 点赞 0 评论 134 浏览 评分:0.0
题解 2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(a>b…… 题解列表 2023年12月10日 0 点赞 0 评论 126 浏览 评分:0.0
编写题解 2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); if(a>b){ …… 题解列表 2023年03月24日 0 点赞 0 评论 122 浏览 评分:0.0
2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long long a,b; cin>…… 题解列表 2023年11月01日 0 点赞 0 评论 80 浏览 评分:0.0