zufällige Zahlen

This commit is contained in:
Leaced 2017-04-09 12:43:54 +02:00
parent 7b9b9f06b0
commit 8632dd6db9
2 changed files with 40 additions and 14 deletions

View file

@ -2,6 +2,8 @@
#include<conio.h>
#include<string>
#include<sstream>
#include<cstdlib>
#include<ctime>
int main()
{
@ -12,21 +14,32 @@ int main()
getline(std::cin, input);
std::stringstream(input) >> amount;
std::cout << "\n";
long double array[amount];
std::cout << "\nM\x94 \bchtest du mit zuf\x84lligen Zahlen arbeiten? y/n ";
getline(std::cin, input);
if(input == "y" || input == "Y")
{
srand(time(0));
for(unsigned short idx = 0; idx < amount; idx++)
{
array[idx] = rand()%100;
}
}
else
{
for(unsigned short idx = 0; idx < amount; idx++)
{
std::cout << "Gib die " << idx+1 << ". Zahl ein: ";
getline(std::cin,input);
std::stringstream(input) >> array[idx];
}
}
std::cout << "\n";
for(unsigned short idx = 0; idx<amount-1; idx++) std::cout << array[idx] <<", ";
std::cout << array[amount-1] << "\n"; //Ausgabe des Arrays nach jedem Sortierungsschritt
std::cout << array[amount-1] << "\n"; //Ausgabe des unsortierten Arrays
for(unsigned short idx = 1; idx < amount; idx++)
{
@ -37,7 +50,7 @@ int main()
array[idx2+1] = temp;
for(unsigned short idx =0; idx<amount-1; idx++) std::cout << array[idx] << ", ";
std::cout << array[amount-1] << "\n"; //Ausgabe des sortierten Arrays
std::cout << array[amount-1] << "\n"; //Ausgabe des Arrays nach jedem Sortierungsschritt
}
getch();

View file

@ -2,6 +2,8 @@
#include<conio.h>
#include<string>
#include<sstream>
#include<cstdlib>
#include<ctime>
int main()
{
@ -12,16 +14,27 @@ int main()
getline(std::cin, input);
std::stringstream(input) >> amount;
std::cout << "\n";
long double array[amount];
std::cout << "\nM\x94 \bchtest du mit zuf\x84lligen Zahlen arbeiten? y/n ";
getline(std::cin, input);
if(input == "y" || input == "Y")
{
srand(time(0));
for(unsigned short idx = 0; idx < amount; idx++)
{
array[idx] = rand()%100;
}
}
else
{
for(unsigned short idx = 0; idx < amount; idx++)
{
std::cout << "Gib die " << idx+1 << ". Zahl ein: ";
getline(std::cin,input);
std::stringstream(input) >> array[idx];
}
}
std::cout << "\n";