2、Content and requirements a、 Write a program: output “Times New Roman”. b、 Write a program: output Apple, Orange, Grape,Pear and Peach. Used the two-dimensional character array。用c++做
时间: 2023-12-14 07:36:46 浏览: 158
c++写的程序
a) 以下是C++程序输出“Times New Roman”的实现:
```c++
#include <iostream>
using namespace std;
int main() {
cout << "Times New Roman" << endl;
return 0;
}
```
b) 以下是使用二维字符数组输出"Apple, Orange, Grape, Pear and Peach"的C++程序实现:
```c++
#include <iostream>
using namespace std;
int main() {
char fruits[5][10] = {"Apple", "Orange", "Grape", "Pear", "Peach"};
for(int i=0; i<5; i++) {
cout << fruits[i] << endl;
}
return 0;
}
```
在这个程序中,我们声明了一个5行10列的字符数组,每一行表示一个水果名称。在循环中,我们逐行输出这些水果名称。
阅读全文