Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dilara SÖZEN
Harf Notu hesaplama
Commits
adb04949
Commit
adb04949
authored
Oct 08, 2022
by
Dilara SÖZEN
Browse files
Upload New File
parent
9a500087
Changes
1
Hide whitespace changes
Inline
Side-by-side
0-100.cpp
0 → 100644
View file @
adb04949
#include<stdio.h>
int
main
(){
int
x
;
printf
(
"Notunuzu giriniz:"
);
scanf
(
"%d"
,
&
x
);
if
(
x
>
100
){
printf
(
"Gecerli not degil."
);
}
if
(
x
<=
100
&&
x
>
90
){
printf
(
"Harf Notunuz: A
\n
"
);
}
if
(
x
<
90
&&
x
>=
80
){
printf
(
"Harf Notunuz: B
\n
"
);
}
if
(
x
<
80
&&
x
>=
70
){
printf
(
"Harf Notunuz: C
\n
"
);
}
if
(
x
<
70
){
printf
(
"Harf Notunuz: F
\n
"
);
}
}
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