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
| import java.util.Scanner; | |
| public class StudentPercentage { | |
| public static void main(String[] args) { | |
| Scanner input = new Scanner(System.in); | |
| String[] names = new String[10]; | |
| double[] obtainedMarks = new double[10]; | |
| double[] totalMarks = new double[10]; | |
| double[] percentage = new double[10]; |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>HTML5 & CSS3 Animation Example</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; |