P1000-题解(C语言代码) 摘要:没什么难的,不要被“自然数”吓到了,定义成int就可以A了 ```c #include int main() { int a,b; scanf("%d%d", &a,…… 题解列表 2019年08月13日 0 点赞 0 评论 509 浏览 评分:0.0
P1000 (C语言代码) 摘要:解题思路: 这道题很简单,主要是输入输出;注意事项: 不要忘记符号参考代码:#include <stdio.h>int main(){ int a,b; scanf("%…… 题解列表 2019年03月06日 0 点赞 0 评论 307 浏览 评分:0.0
编写题解 1267: A+B Problem 摘要:解题思路:1、创建变量a,b2、输入变量3、输出a+b参考代码:#include<iostream> int main (){ int a,b; cin>>a>>b; …… 题解列表 2023年07月14日 0 点赞 0 评论 54 浏览 评分:0.0
P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){int a,b;scanf("%d %d",&a,&b);printf("%d",a+b);return 0;}…… 题解列表 2017年10月16日 0 点赞 0 评论 1020 浏览 评分:0.0
P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*输入两个自然数,输出他们的和 */#include <stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); print…… 题解列表 2018年03月10日 0 点赞 0 评论 517 浏览 评分:0.0
题解:1267: A+B Problem 摘要:解题思路:注意事项:不要打错参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月01日 0 点赞 0 评论 98 浏览 评分:0.0
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月25日 0 点赞 0 评论 55 浏览 评分:0.0
P1000 (C++代码) 摘要:解题思路:自然数可以整型表示注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; for(int i=0…… 题解列表 2018年10月09日 0 点赞 0 评论 485 浏览 评分:0.0
P1000-题解(C语言代码) 摘要:```c #include int main() { int a,b,c; scanf("%d",&a); scanf("%d",&b); c=a+b; pr…… 题解列表 2019年08月11日 0 点赞 0 评论 364 浏览 评分:0.0
简单,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum; scanf ("%d %d",&x,&y); sum=x+y; …… 题解列表 2024年12月03日 1 点赞 0 评论 215 浏览 评分:0.0