intsum(int a,int b) { if (a<b){ int result = 0; for (int i = a; i <= b; i++) result = result + i; cout << "Result is " << result << endl; return result; } else { cout << "Wrong input! First number must bigger than the last one. "; }
}
intmain(void) { int a, b; cin >> a; cin >> b; sum(a, b); }
boolIsLeapYear(int year) { if (year % 100 == 0) { int firstchar = year / 100; if (firstchar % 4 == 0) returntrue; else returnfalse; } else { if (year % 4 == 0) returntrue; else returnfalse; } }
intmain(void) { int year; cout << "Input a year to calculate:"; cin >> year; if (IsLeapYear(year) == true) cout << year << " is leap year. " << endl; else cout << year << " is not leap year. " << endl; }
intmain(void) { cout << "Enter the number of Legendre polynomial terms:"; int n; cin >> n; cout << "Enter the value of the x:"; float x; cin >> x; cout << "The result is " << legendre(n, x) << endl; }
voidmove(int* pointer){ int i, j, t; for (i = 0; i < 3; i++) { for (j = i; j < 3; j++) { t = *(pointer + 3 * i + j); *(pointer + 3 * i + j) = *(pointer + 3 * j + i); *(pointer + 3 * j + i) = t; } } }
intmain(void){ int a[3][3], * p, i; for (i = 0; i < 3; i++) cin >> a[i][0] >> a[i][1] >> a[i][2]; p = &a[0][0]; move(p); for (i = 0; i < 3; i++) cout << a[i][0] << " " << a[i][1] << " " << a[i][2] << endl; return0; }
题目二
设学生人数N=60,提示用户输入N个人的考试成绩,然后计算出他们的平均成绩并显示。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include<iostream> usingnamespacestd;
intmain(void){ int n; cout << "How many students:"; cin >> n; int* p = newint[n]; for (int i = 1; i <= n; i++) { cout << "Type the points of No." << i << " student:"; cin >> p[i]; } float sum = 0; for (int j = 1; j <= n; j++) { sum = sum + p[j]; } float average = sum / n; cout << "Average is:" << average << endl; }