#include
using namespace std;
int fact (int n){
?int res = 1;
?for(int i = 1; i<= n; i++){
??? ?res *= i;
?}
?return res;
}
int main(){
?int n;
?cin >>n;
?
?cout<< fact(n)<< endl;
?
?return 0;
}
#include
using namespace std;
int max (int x, int y){
?if(x >y)return x;
?else return y;
}
int main(){
?int x, y;
?cin >>x >>y;
?
?cout<< max(x, y)<< endl;
?
?return 0;
}
#include
using namespace std;
int gcd (int a, int b){
?for(int i =1000; i; i-- ){
??? ?if(a % i == 0 && b % i == 0 )
??? ?return i;
??? ?}
??? ?return 0;
?}
int main(){
?int a, b;
?cin >>a >>b;
?
?cout<< gcd(a, b)<< endl;
?
?return 0;
}
#include
using namespace std;
void swap(int &x, int &y){
?if(x == y)return ;
?int t = x;
?x = y;
?y = t;
}
int main(){
?int x, y;
?cin >>x >>y;
?
?swap(x, y);
?
?cout<< x<< " "<< y<< endl;
?
?return 0;
}
輸入一個長度為?n?的數組?a?和一個整數?size,請你編寫一個函數,?void print(int a[], int size)
, 打印數組?a?中的前?size?個數。
輸入格式
第一行包含兩個整數?n和?size。
第二行包含?n?個整數?a[i],表示整個數組。
輸出格式
共一行,包含?size個整數,表示數組的前?size個數。
數據范圍
1≤n≤1000
1≤size≤n
#include
using namespace std;
const int N = 1000;
void print(int a[], int size){
?for(int i = 0; i< size; i++){
??? ?cout<< a[i]<< " " ;
?}
?cout<< endl;
}
int main(){
?int n, size;
?int a[N];
?
?cin >>n >>size;
?
?for(int i = 0; i< n; i++)cin >>a[i];?
?
?print(a, size);
?
?return 0;
}
#include
using namespace std;
void print2D(int a[][100], int row, int col){
?for(int i = 0; i< row; i++){
??? ?for(int j = 0 ; j< col; j++){
??? ??? ?cout<< a[i][j]<< " ";
??? ?}
??? ?cout<< endl;
?}
}
int main(){
?int row, col;
?
?int a[100][100];
?
?cin >>row >>col;
?for(int i = 0; i< row; i++){
??? ?for(int j = 0; j< col; j++){
??? ??? ?cin >>a[i][j];
??? ?}
?}?
?print2D(a, row, col);
?
?return 0;
}
你是否還在尋找穩定的海外服務器提供商?創新互聯www.cdcxhl.cn海外機房具備T級流量清洗系統配攻擊溯源,準確流量調度確保服務器高可用性,企業級服務器適合批量采購,新人活動首月15元起,快前往官網查看詳情吧
網頁名稱:復習回顧c語言刷題Day01-創新互聯
網頁網址:http://vcdvsql.cn/article4/didcie.html
成都網站建設公司_創新互聯,為您提供微信小程序、定制開發、網站建設、網頁設計公司、電子商務、網站排名
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯