This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| echo "Enter student name: "; | |
| $student_name = trim(fgets(STDIN)); | |
| for($i = 1; $i <= 5; $i++) { | |
| echo "Enter Answer #$i: "; | |
| $answer[] = trim(fgets(STDIN)); | |
| } | |
| $score = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int main() { | |
| char student_name[100]; | |
| int answer[5]; | |
| int score = 0; | |
| int i; | |
| int status; | |
| printf("Enter student name: "); |
OlderNewer