返回列表 發帖

if...else if...else 判斷式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int x, y;
  7.     cout<<"輸入x: ";
  8.     cin>>x;
  9.     cout<<"輸入y: ";
  10.     cin>>y;
  11.     if(x==y)
  12.     {
  13.         cout<<"x=y"<<endl;
  14.     }else if(x>y)
  15.     {
  16.         cout<<"x>y"<<endl;  
  17.     }else
  18.     {
  19.         cout<<"x<y"<<endl;
  20.     }
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表