简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,sum; scanf("%d %d",&a,&b); sum=a+b;…… 题解列表 2018年11月12日 0 点赞 0 评论 283 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项#include<iostream>using namespace std;int main(){ int a, b; cin >>a>>b; cout << "a+b="…… 题解列表 2018年11月11日 0 点赞 0 评论 213 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考 #include<iostream> using namespace std int ma…… 题解列表 2018年11月11日 1 点赞 0 评论 464 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;int main(){ int a,b; cout<<"a+b="; re…… 题解列表 2018年11月11日 1 点赞 0 评论 440 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:#include<stdio.h>main(){float a,b,sum;scanf("%f",&a,&b);sum=a+b;printf("%f\n",sum);}注意事项:参考代码…… 题解列表 2018年11月10日 0 点赞 0 评论 318 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:需要两个加数,所以申明两个变量。因为需要用户输入,所以用scanf函数。注意事项:声明变量后要初始化。参考代码:#include<stdio.h>int main(void){ int a,…… 题解列表 2018年11月09日 0 点赞 0 评论 281 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>void main(){int a,b;scanf("%d%d",&a,&b);printf("%d\n",a=b);}…… 题解列表 2018年11月07日 0 点赞 2 评论 453 浏览 评分:6.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>uisng namespace std;int main(){int A,B;cin>>A>>B;cout<<A+B;return 0…… 题解列表 2018年11月03日 0 点赞 0 评论 340 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){int a,b;cin>>a>>b;cout<<a+b;return 0…… 题解列表 2018年11月03日 1 点赞 1 评论 172 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a, b; scanf("%d%d",&a, &b); int total = a + b; prin…… 题解列表 2018年11月01日 0 点赞 0 评论 247 浏览 评分:0.0