Aktualizovat „du4/program.c“
This commit is contained in:
parent
f01d7d2a30
commit
95b8458898
@ -1,3 +1,6 @@
|
|||||||
|
/*
|
||||||
|
gcc -Werror -std=c11 -Wall in-out.c -lm -o in-out -lm && ./in-out
|
||||||
|
*/
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -45,9 +48,9 @@ int main(){
|
|||||||
if(cond<0){
|
if(cond<0){
|
||||||
printf("CHYBA\n");
|
printf("CHYBA\n");
|
||||||
return 0;}
|
return 0;}
|
||||||
/*if((fcond=checkend())!='\n'){
|
if((fcond=checkend())!='\n' && fcond>0){
|
||||||
printf("1CHYBA %d\n",(int)fcond);
|
printf("CHYBA\n");
|
||||||
return 0;}*/
|
return 0;}
|
||||||
if(fcond==-1)
|
if(fcond==-1)
|
||||||
break;
|
break;
|
||||||
//printf("%lf %c %lf = %lf\n",list[i].na,list[i].sign,list[i].nb,list[i].result);
|
//printf("%lf %c %lf = %lf\n",list[i].na,list[i].sign,list[i].nb,list[i].result);
|
||||||
@ -70,8 +73,15 @@ char checkend(void){
|
|||||||
while((c=getchar())){
|
while((c=getchar())){
|
||||||
++count;
|
++count;
|
||||||
if(c==EOF || c=='\n'){
|
if(c==EOF || c=='\n'){
|
||||||
|
int a=c;
|
||||||
|
if((c=getchar())==EOF){
|
||||||
|
++count;
|
||||||
|
fseek(stdin,-count,SEEK_CUR);
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
++count;
|
||||||
fseek(stdin,-count,SEEK_CUR);
|
fseek(stdin,-count,SEEK_CUR);
|
||||||
return c;
|
return a;
|
||||||
}
|
}
|
||||||
else if(!isspace(c)){
|
else if(!isspace(c)){
|
||||||
fseek(stdin,-count,SEEK_CUR);
|
fseek(stdin,-count,SEEK_CUR);
|
||||||
|
Loading…
Reference in New Issue
Block a user