简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){int a,b,c;scanf("%d,%d",&a,&b);c=a+b;printf("%d",c);}…… 题解列表 2018年04月02日 0 点赞 0 评论 557 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ …… 题解列表 2017年12月31日 0 点赞 0 评论 398 浏览 评分:0.0
[竞赛入门]简单的a+b (C语言代码) 摘要:解题思路:直接法注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];void…… 题解列表 2019年04月20日 0 点赞 0 评论 487 浏览 评分:0.0
A+B c语言题解 摘要:解题思路:注意事项:难点在于退出循环,具体可以去搜“~”的用法,这虽然不是最优解,可以把它当成一种变式参考代码:#include<stdio.h>int main(void){ int a=0,b=0…… 题解列表 2023年03月23日 0 点赞 0 评论 80 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main (){int a ,b ;printf("enter a , b:") ;scanf ("%d",a,b):int…… 题解列表 2018年04月23日 0 点赞 0 评论 417 浏览 评分:0.0
1001-1050难题 摘要:解题思路:5.8#include<stdio.h>main(){ int n, num, n1, n2, n3, n4, n5; scanf("%d",&n); num = (n - 1 ) / 10…… 题解列表 2018年01月23日 0 点赞 0 评论 1005 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a=480,b=720; int c=a+b; printf("%d",c); return 0…… 题解列表 2017年10月10日 0 点赞 0 评论 713 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C++代码) 摘要: #题目: ####输入两个整数a和b,计算a+b的和 ####注意此题是多组测试数据 #####注意事项:注意此题是多组测试数据,需要注意 送上代码 ```cpp #include…… 题解列表 2019年07月27日 0 点赞 0 评论 868 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int a,b;scanf("%d%d",&a,&b);printf("%d\n",a+b);}…… 题解列表 2018年05月05日 0 点赞 0 评论 373 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#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