华师一附中OI组

标题: 0116C班第一次 [打印本页]

作者: admin    时间: 2022-1-16 17:07
标题: 0116C班第一次
1、安装devcpp
2、记住自己的账号
3、例题1,2,3
  1. #include <iostream>
  2. using namespace std;
  3. int a,b,c;
  4. int main()
  5. {
  6.         cin>>a>>b;
  7.         c=a+b;
  8.         cout<<c;
  9.         return 0;
  10. }
复制代码
  1. #include <iostream>
  2. using namespace std;
  3. int x,a,b;
  4. int  main()
  5. {
  6.         cin>>x;
  7.         a=x/10;
  8.         b=x%10;
  9.         cout<<a<<' '<<b;
  10.         return 0;
  11. }
复制代码
  1. #include <iostream>
  2. using namespace std;
  3. int a,b,x,y;
  4. int  main()
  5. {
  6.         cin>>x;
  7.         a=x/10;
  8.         b=x%10;
  9.         y=10*b+a;
  10.         cout<<y;
  11.         return 0;
  12. }
复制代码



  1. #include <iostream>
  2. using namespace std;
  3. int a,b,c;
  4. int  main()
  5. {
  6.         cin>>a>>b;
  7.         c=a+b;
  8.         cout<<a<<'+'<<b<<'='<<c;
  9.         return 0;
  10. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2