#include<stdio.h>
void compute(int);
int cube(int);
int main()
{
compute(3);
}
void compute(int in)
{
int res=0,i;
for(i=1;i<=in;i++);
{
res=cube(i);
printf("%d %d",res,i);
}
}
int cube(int n)
{
return (n*n*n);
}
〜
輸出:64 4瞭解C-程序的輸出
它是如何發生的呢?
作業標籤需要? – Crisfole 2010-11-03 17:45:22