解题思路:
scanf最后回车被留在缓冲区
getchar 吃掉回车
gets 录入字符串
scanf有返回值 返回的是输入成功地次数 ~scanf 返回补码值
注意事项:
参考代码:
#include <stdlib.h> #include <stdio.h> #include <math.h> #include <string.h> #include <ctype.h> // void scf(int a[], int len)2323// { // for (int i = 0; i < len; i++) // { // scanf("%d", &a[i]); // } // } void printArr(int a[], int len) { for (int i = 0; i < len; i++) { printf("%d\n", a[i]); } } int main(int argc, char **argv) { int g; scanf("%d", &g); int prevValue = 1; for (int i = 0; i < g; i++) { int initValue = i; prevValue += initValue++; int temp = prevValue; // printf("row = %d\n", temp); for (int j = i; j < g; j++) { if (i == j) { printf("%d ", temp); continue; } // ++initValue; temp += j + 1; printf("%d ", temp); } printf("\n"); } return 0; }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.7 (C++代码)浏览:855 |
C语言程序设计教程(第三版)课后习题8.8 (C++代码)浏览:583 |
人见人爱A+B (C语言代码)浏览:808 |
C二级辅导-进制转换 (C语言代码)浏览:850 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:766 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:650 |
模拟计算器 (C语言代码)浏览:966 |
数组输出 (C语言代码)浏览:811 |
哥德巴赫曾猜测 (C语言代码)浏览:1148 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:644 |