简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ scanf("%d %d",&a, &b); printf("%d + %d = %d\n", a…… 题解列表 2018年05月02日 0 点赞 0 评论 360 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:解题思路:注意事项:注意多组测试,可以用while参考代码:#include int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF) pr…… 题解列表 2020年12月14日 0 点赞 0 评论 246 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include <stdio.h> int main() { int a,b,c; scanf("%d,%d,",&a,&b); c=a+b; printf("c=%d\n",c…… 题解列表 2018年07月20日 0 点赞 0 评论 498 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){float a,b,sum;printf("please printf two numbers:");scanf…… 题解列表 2017年10月24日 0 点赞 0 评论 635 浏览 评分:0.0
[竞赛入门]简单的a+b[JAVA语言] 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2022年04月23日 0 点赞 0 评论 260 浏览 评分:0.0
[竞赛入门]简单的a+b(带解释) 摘要:这段代码是用C++编写的,它使用while循环来计算并输出变量a和b的和。 解析: 1. 首先,我们需要包含iostream库,以便使用cout和cin进行输入和输出。 2. 然后,我们定义…… 题解列表 2024年02月11日 0 点赞 0 评论 119 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:他是多组测试数据参考代码:import java.util.Scanner;public class Prog1000 { public static void main(S…… 题解列表 2018年06月02日 0 点赞 0 评论 417 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdib.h>{ int a=100,b=50; system ("pause"); puts("y=a+b%d/n,a,…… 题解列表 2017年10月28日 0 点赞 0 评论 631 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<studio.h>int main(void){ int a , b; printf("please print two number:")…… 题解列表 2018年04月07日 0 点赞 0 评论 603 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年09月01日 0 点赞 0 评论 168 浏览 评分:0.0