[竞赛入门]简单的a+b 摘要:解题思路:注意事项:注意符号和细节的东西参考代码#include<stdio.h>int main(){ int a=0,b=0; while(~scanf("%d%d", &a, &b)…… 题解列表 2021年11月10日 0 点赞 1 评论 89 浏览 评分:7.3
有事找出家人 摘要:解题思路:原题链接:[竞赛入门]简单的a+b[编码入门]简单的a+b题解(C语言代码)代码中使用到“!=EOF”,EOF是一个计算机术语,为“End Of File”的缩写,是文件结尾标志;“!=EO…… 题解列表 2021年11月07日 0 点赞 12 评论 124 浏览 评分:6.9
简单的a+b题解 摘要:解题思路:注意事项:参考代码:while True:#while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的 try: #Python 中,用try except…… 题解列表 2021年09月12日 0 点赞 0 评论 1579 浏览 评分:9.0
#include<stdio.h> int main(){ int i=0,x=0,a[5],b; while(b!=10) { scanf("%c",&am 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,x=0,a[5],b; while(b!=10) { scanf("%c",&b); a[i…… 题解列表 2021年08月24日 0 点赞 1 评论 406 浏览 评分:6.0
#include<stdio.h> 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string> using namespace std; int main(){ char a,b[999]; int…… 题解列表 2021年08月24日 0 点赞 0 评论 150 浏览 评分:0.0
[竞赛入门]简单的a+b Python解决 摘要:解题思路: 简单的加法,使用while循环即可参考代码: while True: n = list(map(int,input().split())) …… 题解列表 2021年08月16日 0 点赞 6 评论 1960 浏览 评分:9.9
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(~scanf("%d%d",&a,&b)) printf("%d\n",a+b)…… 题解列表 2021年08月12日 0 点赞 0 评论 130 浏览 评分:0.0
[竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b)) pr…… 题解列表 2021年08月09日 0 点赞 0 评论 895 浏览 评分:9.9
[竞赛入门]简单的a+b 摘要:解题思路:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) { cout…… 题解列表 2021年07月27日 0 点赞 0 评论 126 浏览 评分:0.0
论作弊狂魔怎样解出1000 摘要:解题思路:我们可以直接点运行,啥都不用干。注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a,…… 题解列表 2021年07月26日 0 点赞 4 评论 247 浏览 评分:8.7