在VC++6.0中,怎样编写一个程序,实现输入多个汉字,输出其编码,求源代码 10
能运行无错误才发给我,那个两行代码的都不行啊出现:fatalerrorC1083:Cannotopenincludefile:'streambuf':Nosuchfile...
能运行无错误才发给我 ,那个两行代码的都不行啊 出现:fatal error C1083: Cannot open include file: 'streambuf': No such file or directory,可能我的版本里没有这样的文件
展开
4个回答
展开全部
#include <iostream>
using namespace std;
int getHighest(int[], int); //最高分
int main()
{
const int NUM_STU= 5;
int array[NUM_STU],
max;
cout<< "请输入5个整数: \n";
for(int i=0; i < NUM_STU; i++)
{
cin>> array[i];
}
max= getHighest(array, NUM_STU);
cout<< "最大值是: "<<max<<endl;
return 0;
}
int getHighest(int array[], int size)
{
int highest;
highest= array[0];
for(int count=1; count< size; count++)
{
if(array[count] > highest)
highest= array[count];
}
return highest;
}
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。
using namespace std;
int getHighest(int[], int); //最高分
int main()
{
const int NUM_STU= 5;
int array[NUM_STU],
max;
cout<< "请输入5个整数: \n";
for(int i=0; i < NUM_STU; i++)
{
cin>> array[i];
}
max= getHighest(array, NUM_STU);
cout<< "最大值是: "<<max<<endl;
return 0;
}
int getHighest(int array[], int size)
{
int highest;
highest= array[0];
for(int count=1; count< size; count++)
{
if(array[count] > highest)
highest= array[count];
}
return highest;
}
我可以帮助你,你先设置我最佳答案后,我百度Hii教你。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <string>
using namespace std;
void main()
{
string a;
cin>>a;
cout<<a;
}
你那个编译器啊?vc中没问题
#include <string>
using namespace std;
void main()
{
string a;
cin>>a;
cout<<a;
}
你那个编译器啊?vc中没问题
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <string>
using namespace std;
void main()
{
string a;
cin>>a;
}
#include <string>
using namespace std;
void main()
{
string a;
cin>>a;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询