猫史档案馆


【灵动工作室&编程猫后援会】C++教程贴第二弹

用户:冰糖炖橙子冰糖炖橙子查看:32 回复:23 评论:32 创建时间:2020-01-24T15:51:44



center_imagecenter_imagecenter_image春节快乐!

除夕快乐!


版权归YDS橙子与编程猫后援会全体成员所有

 

 


回复

上一页1 页 / 共 1下一页
YDSmnxYDSmnx

点赞2


评论


官方雷电猴官方雷电猴

emotion_编程猫_点赞

点赞1


评论


硫酸QwQ硫酸QwQ

a=1002那里少了个分号。。。

点赞1


评论


冰糖炖橙子冰糖炖橙子

为什么没人做题啊

点赞2


评论


Leo韩Leo韩

dddddd

点赞1


评论


过程丶过程丶

dd

点赞0


评论


反正是个球反正是个球

额,作者讲了头文件吗?(万能头讲了吗?)

点赞0


评论


反正是个球反正是个球

1

cout<<"白衣天使加油 武汉加油 中国加油"

2,

int dd;//棱长

int s;//面积

cout<<"input"<<endl;

cin>>dd;//输入

s=dd*dd*6;//公式计算

cout<<s<<endl;

3,

int a,b,c,d,e;

cout<<"input"<<endl;

cin>>a;

cout<<"input"<<endl;

cin>>b;

cout<<"input"<<endl;

cin>>c;

d=a+b;

e=d*c;

cout<<"It's:"<<e<<endl;

 

 

 

点赞1


评论


InkyRainInkyRain

等一下……现在还能做题吗?

点赞0


评论


白篮白篮

好基础的东西啊....

点赞0


评论


InkyRainInkyRain

第一题

# include <iostream>
using namespace std;
int main()
{
    cout <<"白衣天使加油!\n武汉加油!\n中国加油!";
    return 0;
}

第二题

# include <iostream>
using namespace std;
int main()
{
    int a;
    cin >> a;
    cout << a * a * 6;
    return 0;
}

第三题

# include <iostream>
using namespace std;
int main()
{
    int a, b, c;
    cin >> a;
    cin >> b;
    cin >> c;
    cout << (a + b) * 6;
    return 0;
}

点赞1


评论


****************

橙子,明天要上编程课emotion_doge

点赞0


评论


冰糖炖橙子冰糖炖橙子

@LAG的阿法狗猫 我跟你在一个班emotion_doge

点赞0


评论


Ray先生Ray先生

1.

#include<bits/stdc++.h>
using namespace std;
int main()
{
    cout << "白衣天使加油" << endl;
    cout << "武汉加油" << endl;
    cout << "中国加油" << endl;
    return 0;
}

2.

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a;
    cin >> a;
    cout << a*a*6
    return 0;
}

3.

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a, b, c;
    cin >> a >> b >> c;
    cout << (a + b) * c;
    return 0;
}

点赞1


评论


ZH-Y-QZH-Y-Q

IAKIOIemotion_doge

点赞0


评论


Asheep233Asheep233

dd

点赞0


评论


飞熊jSrt飞熊jSrt

求第一弹网址

点赞0


评论


飞熊jSrt飞熊jSrt

cont<<"白衣天使加油!";
cont<<"武汉加油";
cont<<"中国加油";
int a = 0;
cut>>a;
cout<< a * a * 6;
int b = 0;
int c = 0
cout<< (a + b) * c

点赞0


评论


Vitamin维生素Vitamin维生素

橙子...

点赞0


评论


悦qr8R悦qr8R

其实cout的全名是std::coutemotion_喵喵

点赞0


评论


飞熊jSrt飞熊jSrt

cout<<"白衣天使加油!";
cout<<"武汉加油";
cout<<"中国加油";
int a = 0;
cin>>a;
cout<< a * a * 6;
int b = 0;
int c = 0
cout<< (a + b) * c

点赞0


评论


一个STUB用户_6923702一个STUB用户_6923702

#include<bits/stdc++.h>

来打我呀 诶 来打我呀emotion_doge

点赞0


评论


姓梁monkey淡退姓梁monkey淡退

作者也学C++?

同行啊!!!!

#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
for(int i=1;i<=n;i++)
  cout<<"同行啊!兄台"<<endl;
return 0;
}

点赞0


评论