我试图编写一个C ++程序的代码,它将得到一些数字(整数)并将它们放入一个100大小的数组中,并将开始搜索可能给定的负数(负数给定的正数) )在用户输入了标记号码(101)之后。例如;当我们给程序提供整数1,45,12,-32,103,2015和32时,它应该给我们整数32(因为它的负面形式是存在的)并且如果这个陈述没有数字那么它什么都不打印。我写了类似下面的内容;但我不知道如何做其余的事情......感谢任何帮助或建议。
我忘了说我使用CodeBlocks 13.12。
#include <iostream>
using namespace std;
int number = 0, nCounter = 0, sentinel = 101, i;
int myArray[100];
int main (){
cout << "Please enter your numbers: " << endl;
while ( number != 101 ){
cin >> number;
myArray[0]= number;
nCounter += 1;
}
for ( i = 0; i <= nCounter; i++ ){
if (myArray[i] > 0) // I'm stuck at here!
}
return 0;
}
谢谢,请为可能的英语错误道歉。
答案 0 :(得分:2)
以下是代码中的一些错误:
首先,您将所有输入元素分配给数组的第0个索引元素。
用户可以在不输入101的情况下提供200个元素,在这种情况下,您将超出阵列大小。
一个简单的算法应该是这样的:
选择第i个正元素并搜索数组以查找其否定数据。
对数组中每个可能的正元素重复1.
Here是一个有效的例子。
输入应该是这样的:
while ( (nCounter < 100) && (number != sentinel) ) {
std::cin >> number;
myArray[nCounter]= number;
nCounter += 1;
}
检查条件:
for ( i = 0; i < nCounter; i++ ){
if (myArray[i] > 0) {
for( j = 0; j < nCounter; j++) {
if(myArray[i] + myArray[j] == 0) // positive and negative add up to 0
std::cout << myArray[i] << std::endl ;
}
}
}
答案 1 :(得分:0)
在这里对您的代码稍作修改即可获得所需
#include <iostream>
using namespace std;
int number = 0, nCounter = 0, sentinel = 101, i, negMatch;
int myArray[100];
int main (){
cout << "Please enter your numbers: " << endl;
while ( number != 101 ){
cin >> number;
myArray[nCounter]= number;
nCounter += 1;
}
cout << "Enter the number to negative match";
cin >> negMatch;
for ( i = 0; i < nCounter; i++ ){
if ( (myArray[i] + negMatch) == 0) {
cout << myArray[i];
return 0;
}
}
return 0;
}
请注意以下更改:
但是,这个程序并不理想。理想情况下,你会使用像Vector这样可以动态增长的东西。此外,让用户输入数字计数可能更好,而不是使用他可能想要作为输入的标记号。
答案 2 :(得分:0)
我建议在数组的开头写正数,在数组的末尾写负数。
这是一个示范程序
#include <iostream>
int main()
{
const size_t N = 100;
const int SENTINEL = 101;
int a[N];
int number;
size_t positive_end = 0;
size_t negative_begin = N;
for ( size_t i = 0; i < N && std::cin >> number && number != SENTINEL; i++ )
{
if ( number < 0 )
{
a[--negative_begin] = number;
}
else
{
a[positive_end++] = number;
}
}
if ( positive_end != 0 && negative_begin != N )
{
for ( size_t i = 0; i < positive_end; i++ )
{
size_t j = negative_begin;
while ( j != N && a[i] + a[j] != 0 ) ++j;
if ( j != N ) std::cout << a[i] << '\t' << a[j] << std::endl;
}
}
return 0;
}
例如,如果要输入以下数字序列
1 2 -3 4 -5 6 7 3 -9 9 101
然后输出
3 -3
9 -9
您还可以对数组的每个部分(正数部分和负数部分)进行排序,并应用标准算法std::set_intersection
。在这种情况下,您可以排除一个负数对应于几个正数的情况。:)
答案 3 :(得分:0)
如果我理解正确,你想打印负面的,但有正号。有了这个简单的代码,你就可以做到!
#include <iostream>
using namespace std;
int number = 0, nCounter = 0, sentinel = 101;
int myArray[100];
int main (){
cout << "Please enter your numbers: " << endl;
while ( (nCounter < 100) && (number != sentinel) ) {
std::cin >> number;
myArray[nCounter]= number;
nCounter += 1;
}
for (int i = 0; i < nCounter; i++ ){
if (myArray[i] < 0) {
std::cout << (myArray[i] * -1) << std::endl ;
}
}
return 0;
}
降低计算成本的简单更改如下:您可以尝试从读取时给出的数字中获取信息
#include <iostream>
#include <vector>
using namespace std;
int number = 0, sentinel = 101;
int main (){
cout << "Please enter your numbers: " << endl;
vector<int> array;
while (number != sentinel) {
std::cin >> number;
if(number < 0)
array.push_back(number);
}
for (int i = 0; i < array.size(); i++ )
std::cout << (array[i] * -1) << std::endl ;
return 0;
}
答案 4 :(得分:0)
您没有足够重视代码的逻辑。我假设你对此非常陌生,但没有人想要在看到你的程序之前输入100个输入。 以下是您的代码的错误:
#include <iostream>
using namespace std;
int number = 0, nCounter = 0, sentinel = 101, i; // OK
int myArray[100]; // OK, an array with 100 elements
int main (){
cout << "Please enter your numbers: " << endl;
while ( number != 101 ){ //this is where you got it wrong
// this should have been nCounter instead of number
// If you are looking at 100 elements then the condition
// should be "nCounter != 100"
cin >> number;
myArray[0]= number; // this should have been "myArray [nCounter]=number;"
nCounter += 1;
}
for ( i = 0; i <= nCounter; i++ ){ // defining i from outer scope is unnecessary
// since it is only used in the for loop
if (myArray[i] > 0) // I'm stuck at here! // Put a semicolon here
// the remainder of the code probably here
}
return 0;
}
答案 5 :(得分:0)
#include<iostream>
using namespace std;
int main()
{
//initialize size and empty array
int size = 10, x;
int myArray[10] = {};
//enter integers into array
for (int i = 0; i < size; i++)
{
cin >> myArray[i];
}
//search array for negative numbers
for (int i = 0; i < size; i++)
{
if (myArray[i] < 0)
{
x = (myArray[i] * (-1)); //multiply by -1 to get (+)
cout << x << ' ';
}
}
return 0;
}