下面程序的输出为( )。
1 #include <iostream> 2 using namespace std; 3 4 int main() { 5 int cnt = 0; 6 for (int x = 0; x <= 10; x++) 7 for (int y = 0; y <= 10; y++) 8 for (int z = 0; z <= 10; z++) 9 if (x + y + z == 15) 10 cnt++; 11 cout << cnt << endl; 12 return 0; 13 }
90
91
96
100