Guest_imported
New member
- Jan 1, 1970
- 0
I have tu make a Programm wich transforms bin 2 dec and the other way around.
i show you the Program i got from a friend:
#include <stdio.h>
int eingabe()
{
int a;
printf("Zahl: "
scanf("%d",&a);
return a;
}
void ausgabe(int z)
{
int i=0;
int s=0;
unsigned int sh=1;
printf("\n"
s=8*sizeof(z);
sh <<= s-1;
for (i=1;i<=s;i++) {
if (sh & z)
printf("1"
else
printf("0"
sh >>= 1;
}
printf("\n"
}
int main()
{
int Z;
Z = eingabe();
ausgabe(Z);
return 0;
}
#include <stdio.h>
int eingabe()
{
int a;
printf("Zahl: "
scanf("%d",&a);
return a;
}
void ausgabe(int z)
{
int i=0;
int s=0;
unsigned int sh=1;
printf("\n"
s=8*sizeof(z);
sh <<= s-1;
for (i=1;i<=s;i++) {
if (sh & z)
printf("1"
else
printf("0"
sh >>= 1;
}
printf("\n"
}
int main()
{
int Z;
Z = eingabe();
ausgabe(Z);
return 0;
}
My Problem is that i have to do something that nobody can see that this is not my Program! (They compare each Programm with each other!)
Please tell me ow and PLEASE tell it me now because i need the Program in 2 hours! thanks
i show you the Program i got from a friend:
#include <stdio.h>
int eingabe()
{
int a;
printf("Zahl: "
scanf("%d",&a);
return a;
}
void ausgabe(int z)
{
int i=0;
int s=0;
unsigned int sh=1;
printf("\n"
s=8*sizeof(z);
sh <<= s-1;
for (i=1;i<=s;i++) {
if (sh & z)
printf("1"
else
printf("0"
sh >>= 1;
}
printf("\n"
}
int main()
{
int Z;
Z = eingabe();
ausgabe(Z);
return 0;
}
#include <stdio.h>
int eingabe()
{
int a;
printf("Zahl: "
scanf("%d",&a);
return a;
}
void ausgabe(int z)
{
int i=0;
int s=0;
unsigned int sh=1;
printf("\n"
s=8*sizeof(z);
sh <<= s-1;
for (i=1;i<=s;i++) {
if (sh & z)
printf("1"
else
printf("0"
sh >>= 1;
}
printf("\n"
}
int main()
{
int Z;
Z = eingabe();
ausgabe(Z);
return 0;
}
My Problem is that i have to do something that nobody can see that this is not my Program! (They compare each Programm with each other!)
Please tell me ow and PLEASE tell it me now because i need the Program in 2 hours! thanks