本文介绍了如何同时打印学生名单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,我有一个问题.
在大学,学生会按时打印学费,程序会打印此学生名单.我知道如何打印学生.但是我不知道如何一次打印很多学生.
如何编程工作:confused :?感谢大家对我的帮助

Hello everybody,I have a question .
At university,Students tuition at time,Program will print this list of students.I know how to print a student.But I don''t know how to print many students at a time.
How to program work :confused:? Thanks everyone for helping me

推荐答案

using System.Windows.Forms;
list<string> students = new list<string>();


void main
{
  fillStudentList();
  PrintStudents();
}

void PrintStudents()
{
  foreach (string s in students)
  {
    MessageBox.Show(s);
  }
}

void fillStudentList()
{
  students.Add("John");
  students.Add("Jack");
  students.Add("Pete");
  students.Add("Mario");
}



希望对您有所帮助!



Hope this was of help!


这篇关于如何同时打印学生名单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:14