摘要:
撤销:Ctrl/Command + Z 重做:Ctrl/Command + Y 加粗:Ctrl/Command + B 斜体:Ctrl/Command + I 标题:Ctrl/Command + Shift + H 无序列表:Ctrl/Command + Shift + U 有序列表:Ctrl/Co 阅读全文
摘要:
#include <stdio.h> int main () { int n; scanf("%d", &n); int i; int a[n]; a[0] = 1; a[1] = 1; for ( i = 2; i < n; i ++) { a[i] = a[i-1] + a[ i-2]; } } 阅读全文