C#、函数、编程(菜鸟问题)
编写一个程序,程序中要调用名为one_three()的函数。
该函数要在第一行中显示单词"one",
在调用two()函数,
然后再另一行中显示单词“three”。
函数two()应该能在一行中显示单词“two”。
main()函数应该在调用one_three()函数之前显示“starting now:”,
函数调用之后要显示“done!”。
这样最后输出结果如下:
starting now:
one
two
three
done
----------分割线-----------
----------我编的-----------
include <stdio.h>
int main (vodi)
{
printf ("starting now:\n");
int one_three (auto)
{
printf ("one\n");
return auto;
}
int two(case)
{
printf ("two\nthree\n");
return case;
}
printf ("done!\n");
return 0;
}
-------求纠正-------