C语言编程题 要求1、画出N-S流程图 2、写出源程序
(1)编程求S=1+1除3+1除5+1除7+········1除99值。(2)由键盘依次输入10个学生的成绩,要求输出其中最低的分数。...
(1)编程求S=1 + 1除3 + 1除5 + 1除7 +········1除99 值。
(2)由键盘依次输入10个学生的成绩,要求输出其中最低的分数。 展开
(2)由键盘依次输入10个学生的成绩,要求输出其中最低的分数。 展开
2个回答
展开全部
我用C#顺手,多了不想写就写一个吧
string input;
int count;
input = this.TextBox1.Text.Trim();
count = input.Length;
string outPut;
outPut = "";
for (int i = count; i > 0; i--)
{
outPut= outPut+ input.Substring(i-1, 1);
}
Response.Write(outPut);
字符数字都行
string input;
int count;
input = this.TextBox1.Text.Trim();
count = input.Length;
string outPut;
outPut = "";
for (int i = count; i > 0; i--)
{
outPut= outPut+ input.Substring(i-1, 1);
}
Response.Write(outPut);
字符数字都行
追问
我要的是源程序和N-S流程图,我急用!谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询