尋找第二大數並輸出
#include <stdio.h> int getMax2 (int Array[], int len) { if (Array == NULL) return -1; if (len < 1) return -1; int i; int max1 = 0; int max2 = 0; for (i = 0; i < len; i++) { if (max1 < Array[i]) { max2 = max1; max1 = Array[i]; } if (max2 < Array[i] && Array[i] < max1) { max2 = Array[i]; } } return max2; } int main() { int Array[] = {0,1,2,3,4,5,6,7,8,9}; int len = sizeof(Array) / sizeof(int); printf ("max2 = %d\n", getMax2(Array,len)); return 0; } ![在這裡插入圖片描述](https://img-blog.csdnimg.cn/20181124175022897.png)
相關推薦
尋找第二大數並輸出
#include <stdio.h> int getMax2 (int Array[], int len) { if (Array == NULL) return -1; if (len < 1) return -1; int i; int max1
C程式設計——從鍵盤輸入多個數據,並輸出其中第二大的資料
1、注:第二大數小於最大數 2、程式 #include <stdio.h> int getmax2(int *,int); int main() { int a[99] = {0}; int count = 0; printf ("Please input
C++基礎之尋找給定範圍內素數並輸出
#include <iostream> #include <stdio.h> #include <stdlib.h> int main() { int c=0; printf("Input the lower bound\
查詢一個數組中第二大的數的下標並輸出
這幾天筆試中有一個題目,讓輸出一個數組中第二大的數的下標。第一想法就是排序,然後輸出第二大的陣列的下標,但是排序的話會出現交換,原數的下標也會變。所以樓主想把原陣列複製一份儲存下來,然後對原陣列排序,找出第二大的數,與複製的陣列比較,然後輸出下標。這裡有一個問題,如果直接寫
用java訪問Oracle數據庫、取得記錄並輸出到界面
輸出 getc close for str stmt ring class nag Class.forName(“oracle.jdbc.driver.OracleDriver”);Connection conn=DriverManager.getConnection( u
Photoshop腳本 > 壓縮並輸出GIF圖片
photoshop腳本 ps腳本 源自:http://coolketang.com/tutorials/menu2lesson8.php本節將演示如何使用腳本,將當前文檔轉換為GIF格式。首先創建一個空白的腳本文檔,並保存在硬盤上某個位置。首先創建一個空白的腳本文檔,並保存在硬盤上某個位置。接著輸入腳
Photoshop腳本 > 壓縮並輸出JPEG圖片
photoshop腳本 ps腳本 源自:http://coolketang.com/tutorials/menu2lesson9.php本節將演示如何使用腳本,將當前文檔轉換為JPEG格式。首先創建一個空白的腳本文檔,並保存在硬盤上某個位置。首先創建一個空白的腳本文檔,並保存在硬盤上某個位置。接著輸入
python3.4用循環往mysql5.7中寫數據並輸出
select lap Coding 發生 oca pymysql utf-8 num 轉義 #!/usr/bin/env python # -*- coding:utf-8 -*- # __author__ = "blzhu" """ python study Date:
python difflib模塊實現兩個文件差異對比,並輸出html格式。
python difflib difflib 模塊包含一些用來計算和處理序列之間差異的工具。它對於比較文本尤其有用,其中包含的函數可以使用多種常用差異格式生成報告。 實現了三個類: SequenceMatcher 任意類型序列的比較 (可以比較字符串)Differ 對字符串進行比較HtmlDiff
題目:判斷101-200之間有多少個素數,並輸出所有素數
[] bool ole enum print 輸出 static ber while 1 public class PrimeNumber{//100-200直接有多少素數 2 public static void main(String[] args){
10.16輸入一個字符串,內有數字和非數字字符,如: a123x456 17960? 302tab5876 將其中連續的數字作為一個整數,依次存放到一數組num中。例如123放在num[0]中,456放在num[1]中……統計共有多少個整數,並輸出這些數。
tab lnp zip sm2 cuc ycm rds qt5 tft 10.16輸入一個字符串,內有數字和非數字字符,如: a123x456 17960? 302tab5876 將其中連續的數字作為一個整數,依次存放到一數組num中。例
在QT5中實現求兩個輸入值的和並輸出
求和 數據類型 編寫 cnblogs 運行 代碼 .com int logs 1、在UI設計界面放置兩個輸入lineEdit、一個輸出TextBrowser和一個PushButton(用以按鍵求和),如圖 2、打開.h文件,在類裏面添加槽函數的聲明代碼,如圖 ; 3、打開
修改內表數據並輸出結果
odi loop google ogl 表數 插入數據 data into clas *定義結構ty_sales TYPES:BEGIN OF ty_sales, customerid(3) TYPE n, productid(3) TYPE n, orderi
定義一個含有30個整型元素的數組,按順序分別賦予從2開始的偶數;然後按順序每五個數求出一個平均值,放在另一個數組中並輸出
utf-8 http 效果圖 har ++ [] utf 下標 javascrip <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title><
判斷文件格式並輸出文件流
cnblogs quest pty signal func sig 格式 nbsp clas 首先需要一個curl的方法 然後獲取頭信息 輸出文件流 <?php function my_request($url, $data = null,$return_heade
shell讀取文件的每一行內容並輸出【轉】
jpg arch read line com http 內容 pan spa fin 寫法一: #!/bin/bash while read line do echo $line done < file(待讀取的文件) 寫法二:
獲取中文的完整拼音並輸出
stat rtert bin tca spa nat ++ () one 1.添加maven依賴 <dependency> <groupId>com.belerweb</groupId>
Java程序:從命令行接收多個數字,求和並輸出結果
程序代碼 ati for right 流程圖 public 技術 參數 由於 程序設計思想:由於命令行接收的是字符串類型,因此應先將字符串類型轉化為整型或其他字符型,然後利用for循環求和並輸出結果 程序流程圖: 源程序代碼: 1 public class Ja
創建單鏈表並輸出
struct not col eof return pan string tdi null #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct N
python過濾log數據並輸出到txt文件
pre errors 正則 sys lin mpi sed list desktop import re import sys import csv #好像沒用,忘了 import os fileDir = "C:/Users/Administrator/D