Untitled

 avatar
user_4237512
c_cpp
a year ago
525 B
4
Indexable
#include <iostream>
using namespace std ;
int main() {
    int studentID = 110916010 ; // 宣告整數資料型態的變數
    int birthday = 0 ; //宣告整數資料型態的變數儲存使用者輸入的數據
    cout << "您的學號為:" << studentID << endl ; //輸出變數的值
    cout << "請輸入您的生日:" << endl ; // 告訴使用者接下來須執行什麼動作
    cin >> birthday ; // 使用者須輸入自己的數據
    cout << "您的生日是:" << birthday << endl ; // 印出使用者的輸入
}