-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.cpp
More file actions
53 lines (50 loc) · 998 Bytes
/
main.cpp
File metadata and controls
53 lines (50 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <iostream>
#include "ternary.h"
#include <limits>
using namespace std;
int main()
{
short byte=0;
short tryte[11];
do{
cout << "Eingabe: ";
cin >> byte;
if(cin.fail()) {
if(cin.eof()) {
cout << endl;
return 0;
}
cout << "Eingabe ungültig" << endl;
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(),'\n');
}else{
cout << "Dezimal: " << byte << endl;
var_to_tryte(byte, tryte);
cout << "Ternär Bal.: ";
for(char i=0;i<11;i++)
{
cout << tryte[i] << " ";
}
cout << endl;
cout << "Ternär Bal.: ";
for(char i=0;i<11;i++)
{
if(tryte[i]==-1)
{
cout << "-";
}
if(tryte[i]==1)
{
cout << "+";
}
if(tryte[i]==0)
{
cout << "0";
}
}
cout << endl;
byte++;
}
}while(1);
return 0;
}