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

问题描述

嗨我有一个程序可以给出一个可以均匀分割的整数的美分变化。但是它只给出每个面额的变化量。

,例如55美分=

1 50美分

2 20美分

5 10美分

11 5美分>

但它应该输出

1 50美分

0 20美分

0 10美分

1 5分

展开 | 选择 | Wrap | 行号

解决方案



您可以返回结构或通过引用传递。通过引用传递可能是更好的选择。




通过引用传递,传入地址而不是值。




Hi i have a program that gives the cents change of an integer that is divisble evenly 5. However it gives the amount of change for each denomination only.
e.g. 55 cents =
1 50 cent
2 20 cent
5 10 cent
11 5 cent

But it should output
1 50 cent
0 20 cent
0 10 cent
1 5 cent

Expand|Select|Wrap|Line Numbers

解决方案

You can either return a structure or pass by reference. Pass by reference is probably the better option.

Pass By Reference

With pass by reference, you pass in the address instead of the value.




这篇关于功能问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 23:26