本文介绍了如何编写代码来解决这个问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一所提供远程学习课程的小型学院希望有一个应用程序来计算其学生的总学费和费用.用户将输入学生姓名,课程数量每门课程的学时数为3,然后该程序将计算学分时数和总费用对于每周修读15小时以上课程的全日制学生,每学分时费用为44.50,否则,对于每周学习15学时或以下的非全日制学生,每学分时时费用为每周48.每小时学分成本是50,否则,每学分成本是40没有学生修读少于3学分且每周超过40学分

编写一个VB.Net程序,如果远程学习课程运行16周,它将显示学生的姓名,课程数量,总学时和总学费

A small college that offers distance learning courses would like an application that calculates total tuition and fees for their students Users will input the student name, the number of courses The number of credit hours per a course is 3 The program would then calculate credit hours and total cost For Full time student taking greater than 15 hours of courses per a week the cost per credit hour is 44.50 otherwise the cost per credit hour is 48 per a week for part time students taking 15 hours or fewer per a week the cost per hour credit is 50 otherwise the cost per credit hour is 40 No student takes less than 3 credit hours and more than 40 credit hours per week

Write a VB.Net program that will display the name of student, the number of courses, the total credit hours, and the total tuition fee if the distance learning courses are run for 16 weeks

推荐答案



这篇关于如何编写代码来解决这个问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 10:45