最新回答 / 慕沐8157732
#include <stdio.h> 这是C语言的头文件 #include <iostream> 这是C++语言的头文件两者可以理解作用相同
std::cin >> a >> b;这里是属于#include <iostream>因此,
必须要包含#include <iostream>
2023-03-23
#include <iostream>
using namespace std;
#include <string>
int main()
{
int a=1;
int b=2;
cout << "a+b=" << a+b<<endl;
cout << "a-b=" << a-b<<endl;
cout << "a*b=" << a*b<<endl;
cout << "a/b=" << a/b<<endl;
int c=5;
float d=3.25;
cout << "c+d=" << c+d<<endl;
}
using namespace std;
#include <string>
int main()
{
int a=1;
int b=2;
cout << "a+b=" << a+b<<endl;
cout << "a-b=" << a-b<<endl;
cout << "a*b=" << a*b<<endl;
cout << "a/b=" << a/b<<endl;
int c=5;
float d=3.25;
cout << "c+d=" << c+d<<endl;
}
这里是不是讲的不对,a=100 转short b 是因为100在short的可转换范围内,如果你换成1000000试试,不管你是 short b = a,还是short b = (short)a; 都没用,都会丢失
2023-03-19
#include <stdio.h>
int main()
{
printf("Hello 你好! \n");
return 0;
}
这样好像也可以
int main()
{
printf("Hello 你好! \n");
return 0;
}
这样好像也可以
2023-03-13