Commit f99380b5 by chazog

Add readme.md

parents
Showing with 26 additions and 0 deletions
#include<stdio.h>
int main(){
int score = 20;
int passingScore = 35;
if (score < passingScore){
printf("You didn't pass");
}
else if(score == passingScore){
printf("Please beg the professor for mercy");
}else{
printf("You have passed, go home!");
}
int i=0;
int x=2;
while(i < 10){
x += i;
printf("%d\n", x);
i += 1;
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment