C语言复习程序答案

1.输出斐波那契数列前40位,每6个数一行,每个数字占12列,对齐排列。#include<stdio.h>int main(){ int a,b,c,i; a=1,b=1; printf("%12d%

腾讯文库C语言复习程序答案