- 1
I need help with this please
I'm trying to make a grading system But it has lots of errors and isn't working LINK TO THE CODE 👇👇👇 https://code.sololearn.com/c8zzstJWhwx6/?ref=app
7 Réponses
+ 3
when you want to say
...
if(75<studentOne<=100)
...
in c programming language
you have to do like this:
...
if(studentOne > 75 && studentOne <= 100)
...
with this syntax condition will work.
0
Elmira
Thanks will try that
I'm a bit new at this
0
Hi! please repeat the topic 11.1 logical operators of your C course
0
Yaroslav Vernigora
That's the next topic I haven't opened it yet, I'm about to start the switch statement
0
Elmira
Retried it, thanks a lot.
Here's the corrected programme
https://code.sololearn.com/c8zzstJWhwx6/?ref=app
0
Congrats!👏🙂
0
Elmira
Thanks really really new at this, but I wanted to use another method from what was in the lecture that's why I tried this
Thanks a lot