answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Java program to print a mark sheet of students and the number of students is the user input for 5 subjects?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

C program to print mark sheet of 5 subjects and the number of students is user input?

hhh


An assembly language program that will take three decimal input and display minimum of them?

program that take three decimal number as input and find the largest among them in assembly language


C program to print a mark sheet of students and the number of students is the user input for 5 subjects?

main() { int p,m1,m2,m3,m4,m5; printf("enter marks of 5 subjects"); scanf("%d%d%d%d%d",&m1,&m2,&m3,&m4,&m5)l p=(m1+m2+m3+m4+m5)/500*100; if(p>=60) printf("first"); else { if(p>=50) printf("second"); else { if(p>=40) printf("third"); else printf("fail"); } } }


What is legal input?

In a computer program, a legal input is something that can be put into a program and it will work. An illegal input may crash the program.


Which is not a way to input data into a program?

without understanding the program giving a input


Is a program with no input an incorrect program?

No, as long as it calculates something, displays something, or otherwise has an output that benefits the user, it is a program. It could be a program that makes a random number, or a program that tells the user a joke from a database.


Java script program to Print the Fibonacci series using array?

<script type = "text/javascript"> var input; var rev = 0; input=window.prompt ("Please enter a 5-digit number to be reversed."); input = input * 1; while (input > 0) { rev *= 10; rev += input % 10; input /= 10; } document.write ("Reversed number: " + rev); </script>


How do you input 3 subjects and print percentage grade?

Print


How do you create a program that can input 100 names using flowchart?

create a program that can input 100 names


A program to find that the input number is prime or not?

Use Wolfram|Alpha... go to the related link below, Wolfram|Alpha, and type in (is __ (number) prime) and then the program will compute that and tell you if it is prime or composite.


How to write a java program to extract the last digit from the input?

Assuming you've entered a multi-digit number whole number (an integer), then take the modus (%) of the number and 10. E.g., if the number input was 1234, then 1234 % 10 is 4. Thus the final digit is 4. Note that modus 10 is the same as dividing the number by 10 and taking the remainder.


What is robust on java?

A robust program is a program that will accept junk input and not crash. Example: a program that accepts "pancakes" for a date input and pops up a error box or just uses a date input so that this does not happen is a robust program.