標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2020-7-16 14:10
標題:
基本輸入輸出 (一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊秉翰
時間:
2020-7-16 14:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數";
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl ;
system("pause");
return 0;
}
複製代碼
作者:
張詰
時間:
2020-7-16 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張宸綝
時間:
2020-7-16 14:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖敏亘
時間:
2020-7-16 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
季禹妡
時間:
2020-7-16 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王翊豪
時間:
2020-7-16 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;2
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳均睿
時間:
2020-7-16 14:31
本帖最後由 tonyh 於 2020-7-16 14:42 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<< endl;
system("pause");
return 0;
}
複製代碼
作者:
林妤芹
時間:
2020-7-16 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一 整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause")
return0;
}
複製代碼
作者:
林彥廷
時間:
2020-7-16 14:31
本帖最後由 林彥廷 於 2020-7-16 14:46 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一數:";
cin>>a;
count<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃丞軒
時間:
2020-7-16 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<請輸入一整組:" ;
cin>>a;
cout<<您輸入的數子是"<<a<<endl;
systeam("pause");
return0;
}
複製代碼
作者:
邱睿宸
時間:
2020-7-16 14:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<" 輸入一整數 :";
cin>>a;
cout<<" 輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
作者:
黃丞軒
時間:
2020-7-16 14:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<< "請輸入一整組:";
cin>>a;
cout<<"您輸入的數子是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉品蓉
時間:
2020-7-16 14:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"請輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳均睿
時間:
2020-7-16 14:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<< endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭稟弘
時間:
2020-7-16 14:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl ;
system("pause");
return 0;
}
作者:
張銘軒
時間:
2020-7-16 14:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林煜宸
時間:
2020-7-16 15:37
>
#inciude<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=23y=7
cout<<"當x的值為"<<x<<",Y的值為"<<y<<時..."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
作者:
林彥廷
時間:
2020-7-16 16:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入一整數x:";
cin>> x;
cout<<"請輸入一整數y:";
cin>> y;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2