c c++ if statements if else statements etiketindeki yazılar
C / C++ »

Let?s start with an example to remember previous course.
Write a program that enters a final grade of student and prints if the student passed or failed. (40 and above passed)
#include
int main(){
int grade;
printf(?Enter the grade: ?);
scanf(?%d?,&grade);
(continues)…
Devamını Oku »