C++
輸出入
1.1
(Display two messages) Write a program that displays Introduction to Computers and Welcome to Object-Oriented Programming.
// P46 practice quiz 1.1
#include <iostream>
using namespace std;
int main(){
cout<<"Introduction to Computers."<<endl;