Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
viakul
/
iax0583
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7f8273ed
authored
Nov 05, 2018
by
viakul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update 2.c
parent
b6d171c3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
150 additions
and
23 deletions
lab6/2.c
lab6/2.c
View file @
7f8273ed
...
@@ -5,61 +5,190 @@
...
@@ -5,61 +5,190 @@
int
findA
(
char
*
equation
);
int
findA
(
char
*
equation
);
int
findB
(
char
*
equation
);
int
findB
(
char
*
equation
);
int
findC
(
char
*
equation
);
int
findC
(
char
*
equation
);
int
findDiscriminant
(
int
B
,
int
C
);
int
result
(
int
D
,
int
B
,
int
A
);
int
findDiscriminant
(
int
B
,
int
C
,
int
A
);
int
userInput
(
char
*
string
);
int
IsNumber
(
char
*
string
,
int
i
);
int
main
()
int
main
()
{
{
char
string
[
100
];
char
string
[
100
];
int
a
;
int
a
,
b
,
c
,
d
;
int
Bool
=
1
;
int
b
;
int
c
;
printf
(
"Write your equation:
\n
"
);
while
(
Bool
){
scanf
(
"%s"
,
string
);
scanf
(
"%s"
,
string
);
Bool
=
userInput
(
string
);
a
=
findA
(
string
);
if
(
Bool
==
1
){
printf
(
"please repeat make sure that your code meets the next form Ax^2+Bx+c, where a,b and c are integers
\n
"
);
}
}
a
=
findA
(
string
);
printf
(
"A value %d
\n
"
,
a
);
printf
(
"A value %d
\n
"
,
a
);
b
=
findB
(
string
);
b
=
findB
(
string
);
printf
(
"B value %d
\n
"
,
b
);
printf
(
"B value %d
\n
"
,
b
);
c
=
findC
(
string
);
c
=
findC
(
string
);
printf
(
"C value %d"
,
c
);
printf
(
"C value %d
\n
"
,
c
);
d
=
findDiscriminant
(
b
,
c
,
a
);
printf
(
"the discriminant %d
\n
"
,
d
);
Bool
=
result
(
d
,
b
,
a
);
return
0
;
return
0
;
}
}
int
result
(
int
D
,
int
B
,
int
A
){
double
outpt
;
if
(
D
<
0
)
{
printf
(
"There is no solution, the D<0"
);
}
else
if
(
D
==
0
){
printf
(
"there is only one solution
\n
"
);
outpt
=
-
B
/
(
2
*
A
);
printf
(
" x = %fl"
,
outpt
);
}
else
{
printf
(
"There are two solutions
\n
"
);
printf
(
"The first:
\n
"
);
outpt
=
(
-
B
-
sqrt
(
D
))
/
(
2
*
A
);
printf
(
" x = %f
\n
"
,
outpt
);
printf
(
"The second:
\n
"
);
outpt
=
(
-
B
+
sqrt
(
D
))
/
(
2
*
A
);
printf
(
" x = %f"
,
outpt
);
}
return
(
1
);
}
int
findDiscriminant
(
int
B
,
int
C
,
int
A
){
int
D
;
D
=
B
*
B
-
4
*
A
*
C
;
return
(
D
);
}
int
findA
(
char
*
equation
){
int
findA
(
char
*
equation
){
int
i
=
0
;
int
i
=
0
;
char
A
[
100
]
=
{
""
};
char
A
[
100
]
=
{
""
};
char
one
[
100
]
=
{
"1"
};
while
(
1
){
while
(
1
){
if
(((
equation
[
i
]
>
47
)
&&
(
equation
[
i
]
<
58
))
||
(
equation
[
i
]
==
'x'
)){
if
(
equation
[
i
]
==
'x'
){
if
(
equation
[
i
]
==
'x'
){
break
;
break
;
}
}
else
else
{
{
strcat
(
A
,
&
equation
[
i
]
);
strncat
(
A
,
&
equation
[
i
],
1
);
i
++
;
i
++
;
}
}
A
[
i
]
=
'\0'
;
}
if
(((
equation
[
0
]
==
'-'
)
&&
(
equation
[
1
]
==
'x'
))
||
(
equation
[
0
]
==
'x'
))
{
strcat
(
A
,
&
one
[
0
]);
}
return
atoi
(
A
);
return
atoi
(
A
);
}
int
IsNumber
(
char
*
string
,
int
i
){
int
m
;
m
=
1
;
if
((
string
[
i
]
<
58
)
&&
(
string
[
i
]
>
47
)){
m
=
0
;
}
return
(
m
);
}
int
userInput
(
char
*
string
){
int
i
,
bool
;
bool
=
0
;
i
=
0
;
if
(
(
string
[
i
]
==
'-'
)
||
((
string
[
i
]
<
58
)
&&
(
string
[
i
])
>
48
)
||
(
string
[
i
]
==
'x'
))
{
//printf("the First value is okay\n");
}
else
{
}
else
{
printf
(
"you have a mistake in user input. "
);
// printf("the first element is wrong\n");
bool
=
1
;
}
if
(
string
[
i
]
==
'-'
){
i
++
;
//printf("the first sign is -\n");
}
while
(
i
<
strlen
(
string
)
-
5
){
if
(
string
[
i
]
==
'x'
){
break
;
break
;
}
}
else
if
(
IsNumber
(
string
,
i
))
{
bool
=
1
;
break
;
}
}
}
i
++
;
}
if
((
string
[
i
+
1
]
==
'^'
)
&&
(
string
[
i
+
2
]
==
'2'
)
&&
((
string
[
i
+
3
]
==
'-'
)
||
(
string
[
i
+
3
]
==
'+'
)))
{
//printf("the first argument is okay\n");
}
else
{
//printf("the firstargument is wrong\n");
bool
=
1
;
}
i
=
i
+
4
;
while
(
i
<
string
[
i
]
-
2
){
if
(
string
[
i
]
==
'x'
){
break
;
}
else
if
(
IsNumber
(
string
,
i
))
{
// printf("the second argument is not good\n");
bool
=
1
;
break
;
}
i
++
;
}
if
((
string
[
i
+
1
]
==
'-'
)
||
(
string
[
i
+
1
]
==
'+'
)){
i
++
;
//printf("the sign is correct after x^2\n");
}
else
{
//printf("the sign is wrong\n");
bool
=
1
;
}
i
++
;
//printf("%c\n", string[i]);
while
(
i
<
strlen
(
string
)){
if
(
IsNumber
(
string
,
i
)){
// printf("the third value is not good\n");
bool
=
1
;
break
;
}
else
{
//printf("%c", string[i]);
i
++
;
}
}
return
(
bool
);
}
int
findB
(
char
*
equation
){
int
findB
(
char
*
equation
){
int
i
=
0
;
int
i
=
0
;
char
one
[
100
]
=
{
"1"
};
char
B
[
100
]
=
{
""
};
char
B
[
100
]
=
{
""
};
while
(
1
){
while
(
1
){
if
(
equation
[
i
]
==
'x'
){
if
(
equation
[
i
]
==
'x'
){
...
@@ -78,6 +207,9 @@ int findB(char* equation){
...
@@ -78,6 +207,9 @@ int findB(char* equation){
i
++
;
i
++
;
}
}
i
++
;
i
++
;
if
(
equation
[
i
]
==
'x'
){
strncat
(
B
,
&
one
[
0
],
1
);
}
while
(
1
){
while
(
1
){
if
(
equation
[
i
]
==
'x'
){
if
(
equation
[
i
]
==
'x'
){
break
;
break
;
...
@@ -109,11 +241,6 @@ int findC(char* equation){
...
@@ -109,11 +241,6 @@ int findC(char* equation){
}
}
i
=
i
+
1
;
i
=
i
+
1
;
strcat
(
C
,
&
equation
[
i
]);
strcat
(
C
,
&
equation
[
i
]);
C
[
i
]
=
'\0'
;
return
atoi
(
C
);
return
atoi
(
C
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment