返回列表 發帖

[作業] 判斷a,b(2數比大小)

本帖最後由 鄭繼威 於 2022-12-16 20:08 編輯




完成一個可以判斷a,b大小等於的程式
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5.         cout<<"---判斷a,b---"<<endl;
  6.         int a;
  7.         cout<<"請輸入a:";
  8.         cin>>a;
  9.         
  10.         int b;
  11.         cout<<"請輸入b:";
  12.         cin>>b;
  13.         
  14.         if (a > b){
  15.            cout<<a<<">"<<b;
  16.         }  
  17.         else if(a < b){
  18.            cout<<a<<"<"<<b;
  19.         }
  20.         else if(a==b){
  21.            cout<<a<<"="<<b;
  22.         }
  23.         else{
  24.                 cout<<"其他例外";
  25.         }
  26.         cout<<endl;
  27.         system("pause");
  28.         return 0;
  29. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

返回列表