-
先定义一个变量用于存储,没出现一个更大的值就赋给变量查看全部
-
C++初始化方法查看全部
-
C++中新的数据类型--BOOL查看全部
-
随用随定义查看全部
-
此处的IDE指的是 集成开发环境(Integrated Development Environment)查看全部
-
IDE(Integrated Device Electronics)的简称,是一种硬盘的传输接口查看全部
-
初始化方法查看全部
-
fsdfas查看全部
-
#include<iostream> using namespace std; int getMaxOrMin(int *arr,int count,bool isMax){ int temp=arr[0]; for(int i=1;i<count;i++){ if(isMax){ if(temp<arr[i]) temp=arr[i]; } else{ if(temp>arr[i]) temp=arr[i]; } } return temp; } int main(){ int arr1[4]={3,1,4,7}; bool flag=false; cin>>flag; cout<<getMaxOrMin(arr1,4,flag)<<endl; }查看全部
-
#include<iostream> using namespace std; int main(){ int x; cout<<"请输入一个整数:"<<endl; cin>>x; cout<<oct<<x<<endl; cout<<dec<<x<<endl; cout<<hex<<x<<endl; bool y; cout<<"请输入一个bool值"<<endl; cin>>y; cout<<boolalpha<<y<<endl; }查看全部
-
C++比C语言更高效这种说法是错误的查看全部
-
#include <iostream> #include<stdlib.h> using namespace std; namespace A { int x=1; void fun() { cout<<"A"<<endl; } } namespace B { int x=2; void fun() { cout<<"B"<<endl; } void fun2() { cout<<"2B"<<endl; } } int main(void) { cout<<A::x<<endl; B::fun(); system("pause"); return 0; }查看全部
-
:: 啥意思干嘛的查看全部
-
(0.1)后面为什么加了一个冒号,还有一个星号查看全部
-
就是为了截个图 记着进制的问题查看全部
举报
0/150
提交
取消