A
asoishnica
Найти все цепочки символов , являющиеся записями целых чисел по основанию 8 и найти цепочку , являющуюся записью наибольшего числа.
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>
void main()
{
char str[100]={0};
char tst[100]={0}, max=0;
int i=0,n;
clrscr();
puts("Vvedite stroku");
gets(str);
for(i=0;str!='\0';i++)
{while(str=='0' || str=='1'){
if(tst[100]==0) tst=str;}
n=(int)tst;
if(n>max){ max=n; memset(tst, 0, sizeof(int)*100);}
}
printf("%d",max);
getch();
}
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>
void main()
{
char str[100]={0};
char tst[100]={0}, max=0;
int i=0,n;
clrscr();
puts("Vvedite stroku");
gets(str);
for(i=0;str!='\0';i++)
{while(str=='0' || str=='1'){
if(tst[100]==0) tst=str;}
n=(int)tst;
if(n>max){ max=n; memset(tst, 0, sizeof(int)*100);}
}
printf("%d",max);
getch();
}