关于一个简单的C++程序。。。 10
#include<iostream.h>template<classT>voidSwap(T&x,T&y){Ttemp;temp=x;x=y;y=temp;}templa...
#include <iostream.h>
template <class T>
void Swap (T &x, T &y)
{
T temp;
temp = x;
x = y;
y = temp;
}
template <class T>
void BubbleSort(T A[], int n)
{
int i,j;
for (i =n-1;i>=0;i--)
for (j = 0; j < i; j++)
if (A[j+1] > A[j])
{
Swap(A[j],A[j+1]);
}
cout<<A[n-1];
}
void main()
{
int A[10];
cout<<"请输入数组元素值"<<endl;
for(int k=0;k<10;k++)
cin>>A[k];
BubbleSort(A, 10);
}
在主函数中如何定义,可以让程序任意输入数组的个数和数值进行比较,最后输出最小的那个呢? 展开
template <class T>
void Swap (T &x, T &y)
{
T temp;
temp = x;
x = y;
y = temp;
}
template <class T>
void BubbleSort(T A[], int n)
{
int i,j;
for (i =n-1;i>=0;i--)
for (j = 0; j < i; j++)
if (A[j+1] > A[j])
{
Swap(A[j],A[j+1]);
}
cout<<A[n-1];
}
void main()
{
int A[10];
cout<<"请输入数组元素值"<<endl;
for(int k=0;k<10;k++)
cin>>A[k];
BubbleSort(A, 10);
}
在主函数中如何定义,可以让程序任意输入数组的个数和数值进行比较,最后输出最小的那个呢? 展开
展开全部
#include<iostream>
#include<string>
using namespace std;
int main(){
string InChar; //输入字符
cout<<"请输入一串数字"<<endl;
cin>>InChar;
int len=InChar.length(),InNum=0;
bool IsLetter=false;
int* num=new int[len];
for(int i=0;i<len;i++)
{
int a=(InChar[i]-'0'); //ASICC码与数字的差值
if(a<0||a>9)
{
IsLetter=true;
break;
}
else
num[i]=InChar[i]-'0';
}
if(IsLetter)
cout<<"您输入的是字母(或其他字符)!"<<endl;
else
{
for(int i=0;i<len;i++)
{
int temp=num[i];
for(int j=len-i;j>1;j--)
temp*=10;
InNum+=temp;
}
cout<<"您输入的数字是:(在此处添加您想要的判断数字范围)"<<InNum<<endl;
}
return 0;
}
#include<string>
using namespace std;
int main(){
string InChar; //输入字符
cout<<"请输入一串数字"<<endl;
cin>>InChar;
int len=InChar.length(),InNum=0;
bool IsLetter=false;
int* num=new int[len];
for(int i=0;i<len;i++)
{
int a=(InChar[i]-'0'); //ASICC码与数字的差值
if(a<0||a>9)
{
IsLetter=true;
break;
}
else
num[i]=InChar[i]-'0';
}
if(IsLetter)
cout<<"您输入的是字母(或其他字符)!"<<endl;
else
{
for(int i=0;i<len;i++)
{
int temp=num[i];
for(int j=len-i;j>1;j--)
temp*=10;
InNum+=temp;
}
cout<<"您输入的数字是:(在此处添加您想要的判断数字范围)"<<InNum<<endl;
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询